chiark
/
gitweb
/
~mdw
/
firewall
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
78af294
)
bookends.m4: If debugging, dump the final tables.
author
Mark Wooding
<mdw@distorted.org.uk>
Mon, 5 Mar 2012 23:51:00 +0000
(23:51 +0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Mon, 5 Mar 2012 23:56:03 +0000
(23:56 +0000)
This makes it rather easier to see what's gone wrong when the update
times out.
bookends.m4
patch
|
blob
|
blame
|
history
diff --git
a/bookends.m4
b/bookends.m4
index 6caad93f8d8b084fbd1cbea86c6280dd31d0e870..69a721e31510168cf54309753839334187bcd67c 100644
(file)
--- a/
bookends.m4
+++ b/
bookends.m4
@@
-243,5
+243,17
@@
for ip in ip ip6; do
done
done
+## Dump the resulting configuration.
+if [ "$FW_DEBUG" ]; then
+ for ip in ip ip6; do
+ for table in mangle filter; do
+ echo "----- $ip $table -----"
+ echo
+ ${ip}tables -t $table -nvL
+ echo
+ done
+ done
+fi
+
m4_divert(-1)
###----- That's all, folks --------------------------------------------------