diff options
author | Roy Marples <roy@marples.name> | 2007-11-29 11:23:06 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-29 11:23:06 +0000 |
commit | 82df7e4584282896a0618f14cca2dd3f3d23e8a2 (patch) | |
tree | 05a0c01d32adbbb2df8d833b97918454a3178a04 /conf.d.Linux/net.example | |
parent | 50161bef0e27ca235d876b888ae5abcafbec2ac7 (diff) |
Use shorthand for loops
Diffstat (limited to 'conf.d.Linux/net.example')
-rw-r--r-- | conf.d.Linux/net.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.d.Linux/net.example b/conf.d.Linux/net.example index 53e71679..9cdea36d 100644 --- a/conf.d.Linux/net.example +++ b/conf.d.Linux/net.example @@ -989,7 +989,7 @@ # eerror "You need to enable IP Policy Routing (CONFIG_IP_MULTIPLE_TABLES)" # eerror "in your kernel to use ip rules" # else -# for x in "$@"; do +# for x; do # ebegin "${x}" # ip rule add ${x} dev "${IFACE}" # eend $? |