diff options
author | Ruben Pollan <meskio@sindominio.net> | 2019-11-07 23:11:40 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-11-07 23:11:40 +0100 |
commit | a38b8b743391e8003af062fa9e0b8cbacda7c75a (patch) | |
tree | ac6d671f89c445fcb4ef24555427e885c3123513 /helpers | |
parent | 52efef43936303b2954747b22c53adb62dd20b13 (diff) |
[bug] fix typo on bitmask-root
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/bitmask-root | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/bitmask-root b/helpers/bitmask-root index 42a46bd..3376ce7 100644 --- a/helpers/bitmask-root +++ b/helpers/bitmask-root @@ -764,7 +764,7 @@ def firewall_start(args): exitcode=True) != 0: with open(QUBES_FW_SCRIPT, mode="w") as qfile: qfile.write("#!/bin/sh\n") - qfile.write("# Anti-leak rules installed by " + SCRIPT + " " + + qfile.write("# Anti-leak rules installed by " + SCRIPT + " " + VERSION + "\n") qfile.write("iptables --insert FORWARD -i eth0 -j DROP\n") qfile.write("iptables --insert FORWARD -o eth0 -j DROP\n") |