tor: Update setup to use plinth instance

This commit is contained in:
mridulnagpal 2016-12-10 18:11:00 +05:30 committed by James Valleroy
parent 9f2521ce76
commit 49106fe8ee
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -36,17 +36,17 @@ APT_TOR_PREFIX = 'tor+'
def is_enabled():
"""Return whether the module is enabled."""
return action_utils.service_is_enabled('tor')
return action_utils.service_is_enabled('tor@plinth')
def is_running():
"""Return whether the service is running."""
return action_utils.service_is_running('tor')
return action_utils.service_is_running('tor@plinth')
def get_status():
"""Return current Tor status."""
output = actions.superuser_run('tor', ['get-status'])
output = actions.superuser_run('tor@plinth', ['get-status'])
status = json.loads(output)
hs_info = status['hidden_service']