Displaying 1 result from an estimated 1 matches for "determine_ipset_version".
2013 Dec 17
1
shorewall add fails with IPSET=
...oes not have a dynamic host list
The error is corrected setting the actual path to ipset in shorewall.conf,
or via the patch:
--- /usr/share/shorewall/lib.cli.orig   2013-12-17 22:52:13.000000000 +0100
+++ /usr/share/shorewall/lib.cli        2013-12-17 22:54:04.843146111 +0100
@@ -582,7 +582,7 @@
 determine_ipset_version() {
     local setname
 
-    if [ -z "$IPSET" -o $IPSET = ipset ]; then
+    if [ -z "$IPSET" -o "$IPSET" = "ipset" ]; then
        IPSET=$(mywhich ipset)
        [ -n "$IPSET" ] || fatal_error "The ipset utility cannot be located"
     f...