diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-01-16 17:58:59 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-01-16 17:58:59 +0100 |
commit | cb1b9e06e3062035df19d9c0812bef7a98bcc51f (patch) | |
tree | e67fbc6edd169341d369ffa9af3664ef9a98d062 /src | |
parent | 45e5fb4e868274c9afc4bc6f47da9acaaa4af940 (diff) |
[bug] fix the systemctl run
Diffstat (limited to 'src')
-rwxr-xr-x | src/leap/bitmask/vpn/helpers/linux/bitmask-root | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/helpers/linux/bitmask-root b/src/leap/bitmask/vpn/helpers/linux/bitmask-root index 7a3660b3..b39be582 100755 --- a/src/leap/bitmask/vpn/helpers/linux/bitmask-root +++ b/src/leap/bitmask/vpn/helpers/linux/bitmask-root @@ -749,7 +749,7 @@ def firewall_start(args): if QUBES_VER == 4: run(QUBES_FW_SCRIPT) elif QUBES_VER == 3: - run("systemctl", ["restart", "qubes-firewall.service"]) + run("systemctl", "restart", "qubes-firewall.service") def firewall_stop(): |