NetBSD/etc/rc.d/staticroute

40 lines
676 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: staticroute,v 1.2 2004/08/13 18:08:03 mycroft Exp $
#
# PROVIDE: staticroute
# REQUIRE: network
# BEFORE: NETWORKING
$_rc_subr_loaded . /etc/rc.subr
name="staticroute"
start_cmd="staticroute_doit Adding add"
stop_cmd="staticroute_doit Deleting delete"
staticroute_doit() {
if [ -s /etc/route.conf ]; then
echo "$1 static routes."
while read args; do
[ -z "$args" ] && continue
case "$args" in
"#"*)
;;
"+"*)
[ $2 = "add" ] && eval ${args#*+}
;;
"-"*)
[ $2 = "delete" ] && eval ${args#*-}
;;
*)
route -q $2 -$args
;;
esac
done < /etc/route.conf
fi
}
load_rc_config $name
run_rc_command "$1"