diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2000-08-28 02:30:36 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2000-08-28 02:30:36 +0000 |
commit | 46e0cd1637097cd7834953183d8b27235607402a (patch) | |
tree | 5f7ff1406d5a443aee9f41870aff4b29a652fd66 /etc | |
parent | 65af60677b7747bdb51a133f09797e93b8e40b8a (diff) |
explicit path to gated so that it will load as expected
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.150 2000/08/25 16:14:12 deraadt Exp $ +# $OpenBSD: rc,v 1.151 2000/08/28 02:30:35 brad Exp $ # System startup script run by init on autoboot # or after single-user. @@ -372,7 +372,7 @@ echo -n starting network daemons: # If $gated == YES, gated is used; otherwise routed. # If $routed_flags == NO, routed isn't run. if [ X${gated} = X"YES" -a -e /etc/gated.conf ]; then - echo -n ' gated'; gated $gated_flags + echo -n ' gated'; /usr/local/sbin/gated $gated_flags elif [ "X${routed_flags}" != X"NO" ]; then echo -n ' routed'; routed $routed_flags fi |