7 lines
98 B
Bash
7 lines
98 B
Bash
#!/bin/ash
|
|
|
|
if [ ! $NAME != $NODE ]; then
|
|
echo "Route down: $SUBNET"
|
|
ip route del $SUBNET
|
|
fi
|