summaryrefslogtreecommitdiff
path: root/notify-fw
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-10-24 07:57:06 -0500
committerzachir <zachir@librem.one>2023-10-24 07:57:06 -0500
commite70b4be988bae1ef98326a21321d476fd6a8afd0 (patch)
treeb63beb54cc51f34c7f2c08821a231176067afb7f /notify-fw
parentafb4b7b9dba90eb0f00a06864450b7a38a399626 (diff)
Use sudo instead of doas
Not because of technical superiority, but in Linux we can expect sudo is installed, and doas will not be supported as well.
Diffstat (limited to 'notify-fw')
-rwxr-xr-xnotify-fw6
1 files changed, 3 insertions, 3 deletions
diff --git a/notify-fw b/notify-fw
index 55bfde8..62f148e 100755
--- a/notify-fw
+++ b/notify-fw
@@ -1,8 +1,8 @@
#!/bin/sh
-LIST="$(doas iptables -S)"
-LIST6="$(doas ip6tables -S)"
-LISTN="$(doas nft list ruleset)"
+LIST="$(sudo iptables -S)"
+LIST6="$(sudo ip6tables -S)"
+LISTN="$(sudo nft list ruleset)"
notify-send "IPTables rules" "IPTables Rules:\n$LIST"
notify-send "IP6Tables rules" "IP6Tables Rules:\n$LIST6"
notify-send "NFTables rules" "NFTables Rules:\n$LISTN"