diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-11 08:41:35 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-11 08:41:35 +0000 |
commit | e5dacde71abb778a482b0060852363c889f2bf37 (patch) | |
tree | 35915125faac62fbdcec3246a2ce92c6a082f56a /etc/rc | |
parent | dc9c0c70446efdf1849edee5b122994bcd7055f7 (diff) |
change last route to route -n
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.79 1998/07/05 02:50:08 todd Exp $ +# $OpenBSD: rc,v 1.80 1998/07/11 08:41:34 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. @@ -119,7 +119,7 @@ if [ -f /etc/ifaliases ]; then set -- `sed -e 's/#.*$//' /etc/ifaliases | grep -v '^$'` while [ $# -ge 3 ] ; do ifconfig $1 inet alias $2 netmask $3 - route add -host $2 localhost + route -n add -host $2 localhost shift 3 done ) |