mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-23 14:04:26 -04:00
When stopping an onion, dont even try if --local-only
This commit is contained in:
parent
4c6237440a
commit
d91da6fa77
1 changed files with 10 additions and 9 deletions
|
@ -665,15 +665,16 @@ class Onion(object):
|
||||||
Stop a specific onion service
|
Stop a specific onion service
|
||||||
"""
|
"""
|
||||||
onion_host = mode_settings.get("general", "service_id")
|
onion_host = mode_settings.get("general", "service_id")
|
||||||
self.common.log("Onion", "stop_onion_service", f"onion host: {onion_host}")
|
if onion_host:
|
||||||
try:
|
self.common.log("Onion", "stop_onion_service", f"onion host: {onion_host}")
|
||||||
self.c.remove_ephemeral_hidden_service(
|
try:
|
||||||
mode_settings.get("general", "service_id")
|
self.c.remove_ephemeral_hidden_service(
|
||||||
)
|
mode_settings.get("general", "service_id")
|
||||||
except:
|
)
|
||||||
self.common.log(
|
except:
|
||||||
"Onion", "stop_onion_service", f"failed to remove {onion_host}"
|
self.common.log(
|
||||||
)
|
"Onion", "stop_onion_service", f"failed to remove {onion_host}"
|
||||||
|
)
|
||||||
|
|
||||||
def cleanup(self, stop_tor=True):
|
def cleanup(self, stop_tor=True):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue