=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/rc,v retrieving revision 1.141 retrieving revision 1.142 diff -c -r1.141 -r1.142 *** src/etc/rc 2000/06/14 15:50:55 1.141 --- src/etc/rc 2000/06/18 22:58:42 1.142 *************** *** 1,4 **** ! # $OpenBSD: rc,v 1.141 2000/06/14 15:50:55 deraadt Exp $ # System startup script run by init on autoboot # or after single-user. --- 1,4 ---- ! # $OpenBSD: rc,v 1.142 2000/06/18 22:58:42 todd Exp $ # System startup script run by init on autoboot # or after single-user. *************** *** 158,179 **** syslogd_flags="${syslogd_flags} -a ${named_chroot}/dev/log" fi syslogd ${syslogd_flags} - - # /etc/ifaliases, if it exists, contains the names of additional IP - # addresses for each interface. It is formatted as a series of lines - # that contain - # interface address netmask - if [ -f /etc/ifaliases ]; then - ( - # delete comments and blank lines - set -- `stripcom /etc/ifaliases` - while [ $# -ge 3 ] ; do - ifconfig $1 inet alias $2 netmask $3 - route -n add -host $2 localhost - shift 3 - done - ) - fi # $named_flags, $named_user, and $named_chroot are imported from /etc/rc.conf; # if $named_flags != NO, named is run. --- 158,163 ----