summaryrefslogtreecommitdiff
path: root/net.Linux
diff options
context:
space:
mode:
Diffstat (limited to 'net.Linux')
-rw-r--r--net.Linux/iproute2.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/net.Linux/iproute2.sh b/net.Linux/iproute2.sh
index 8357f25..8736e00 100644
--- a/net.Linux/iproute2.sh
+++ b/net.Linux/iproute2.sh
@@ -190,8 +190,10 @@ iproute2_pre_start() {
}
iproute2_post_start() {
- # Kernel may not have tcp built in
- [ -e /proc/net/route ] && ip route flush table cache dev "${IFACE}"
+ # Kernel may not have IP built in
+ if [ -e /proc/net/route ]; then
+ ip route flush table cache dev "${IFACE}"
+ fi
}
iproute2_post_stop() {