This commit is contained in:
Christian Rotzoll
2019-04-02 22:17:30 +01:00
parent 0b2f7dfebe
commit 31a09f389e

View File

@@ -55,7 +55,7 @@ if sys.argv[1] == "restore":
if sys.argv[1] == "on":
# check if already running
isRunning = subprocess.getoutput("sudo systemctl --no-pager | grep 'autossh-tunnel' -c %s" % (SERVICENAME))
isRunning = subprocess.getoutput("sudo systemctl --no-pager | grep '%s' -c" % (SERVICENAME))
print(isRunning)
if int(isRunning) > 1:
print("already ON - run 'internet.sshtunnel.py off' first")