diff options
author | Timo Teräs <timo.teras@iki.fi> | 2010-11-01 13:39:58 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2010-11-01 13:40:55 +0200 |
commit | 758dce80584f1a789215a28b46db774edb419e90 (patch) | |
tree | dc5edf048b57397287bc30b15b337213d6675b3d /main/shorewall-shell/shorewall-policyrouting.patch | |
parent | 4f23c607b82e9bdc1fc51cfc98f3511811cfb9d1 (diff) | |
download | aports-758dce80584f1a789215a28b46db774edb419e90.tar.bz2 aports-758dce80584f1a789215a28b46db774edb419e90.tar.xz |
main/shorewall-shell: add policy routing related patch
To allow creation of routing tables to be managed by an external
component (e.g. quagga or opennhrp).
Diffstat (limited to 'main/shorewall-shell/shorewall-policyrouting.patch')
-rw-r--r-- | main/shorewall-shell/shorewall-policyrouting.patch | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/main/shorewall-shell/shorewall-policyrouting.patch b/main/shorewall-shell/shorewall-policyrouting.patch new file mode 100644 index 0000000000..26399108e3 --- /dev/null +++ b/main/shorewall-shell/shorewall-policyrouting.patch @@ -0,0 +1,47 @@ +--- old/lib.providers ++++ new/lib.providers +@@ -141,7 +141,7 @@ + # Add Provider $table ($number) + # + __EOF__ +- save_command "if interface_is_usable $interface; then" ++ save_command "if [ -n \"$interface\" ] && interface_is_usable \"$interface\"; then" + save_indent1="$INDENT" + INDENT="$INDENT " + +@@ -283,7 +283,14 @@ + INDENT="$save_indent1" + save_command else + +- if [ -n "$optional" ]; then ++ if [ "${interface:--}" = "-" -a "${duplicate:--}" = "-" -a "${gateway:--}" = "-" -a "${options:--}" = "-" -a "${copy:--}" = "-" ]; then ++ indent >&3 << __EOF__ ++ ++progress_message " Provider $table ($number) Added" ++ ++__EOF__ ++ ++ elif [ -n "$optional" ]; then + save_command " error_message \"WARNING: Interface $interface is not configured -- Provider $table ($number) not Added\"" + save_command " ${iface}_up=" + else +@@ -316,10 +323,6 @@ + [ "x$source" = x- ] && source= + [ "x$dest" = x- ] && dest= || dest="to $dest" + +- [ -n "${source}${dest}" ] || fatal_error "You must specify either the source or destination in an rt rule: \"$rule\"" +- +- [ -n "${dest:=to 0.0.0.0/0}" ] +- + if [ -n "$source" ]; then + case $source in + *:*) +@@ -332,8 +335,6 @@ + source="iif $source" + ;; + esac +- else +- source='from 0.0.0.0/0' + fi + + case "$priority" in |