btools: Obsolete pre hostprog era cc_tools.
[dragonfly.git] / share / examples / slattach / unit-command.sh
blob9e97ffdcd69617076e311172c8b72abc72c69bc3
1 #!/bin/sh
3 old_unit=$1
4 new_unit=$2
6 if [ $old_unit != -1 ]; then
7 ifconfig sl$old_unit delete down
8 if [ $new_unit == -1 ]; then
9 route delete default
13 if [ $new_unit != -1 ]; then
14 ifconfig sl$new_unit <address1> <address2>
15 if [ $old_unit == -1 ]; then
16 route add default <address2>