Skip to content

Commit

Permalink
firewall: Fix copy&pasted code
Browse files Browse the repository at this point in the history
Markdown ate the asterisks
  • Loading branch information
jplitza authored and genofire committed Aug 5, 2019
1 parent 81e2a3e commit 91f55c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/firewall/files/00-base
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# clear all tables, not only filter
for table in $(iptables-save | grep '^' | cut -d'' -f2); do
for table in $(iptables-save | grep '^*' | cut -d'*' -f2); do
ipt -t $table -F
ipt -t $table -X
done
Expand Down

0 comments on commit 91f55c3

Please sign in to comment.