correct command call

This commit is contained in:
Christian Rotzoll 2019-04-02 00:13:37 +01:00
parent ce32ce86e0
commit ba6b7e1009

View file

@ -16,7 +16,8 @@ if len(sys.argv) <= 1 or sys.argv[1] == "-h" or sys.argv[1] == "help":
if sys.argv[1] == "on": if sys.argv[1] == "on":
# check if already running -> systemctl is-enabled autossh-tunnel.service # check if already running -> systemctl is-enabled autossh-tunnel.service
alreadyRunning = subprocess.check_output(['systemctl','is-enabled','autossh-tunnel.service'],shell=True) alreadyRunning = subprocess.check_output('systemctl is-enabled autossh-tunnel.service' ,shell=True)
print(alreadyRunning)
if alreadyRunning == "enabled": if alreadyRunning == "enabled":
print("already running - run 'internet.sshtunnel.py off' first") print("already running - run 'internet.sshtunnel.py off' first")
sys.exit(1) sys.exit(1)