diff options
author | ache <ache@FreeBSD.org> | 1995-04-12 16:58:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-04-12 16:58:06 +0000 |
commit | baa7d4604a5066145df24b0c82dc3f5eba17f8a1 (patch) | |
tree | f8b8b9a96cc0173ebe5d90c2cdac9a112008a2b0 /etc/netstart | |
parent | 3d6e9f574b32dd7e1a412d1e51a41b3f9eda5610 (diff) | |
download | FreeBSD-src-baa7d4604a5066145df24b0c82dc3f5eba17f8a1.zip FreeBSD-src-baa7d4604a5066145df24b0c82dc3f5eba17f8a1.tar.gz |
Call gated as /usr/local/sbin/gated instead of possible adding
/usr/local/sbin to rc PATH
Diffstat (limited to 'etc/netstart')
-rwxr-xr-x | etc/netstart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart index 9273799..18dc70d 100755 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: netstart,v 1.26 1995/04/09 09:54:41 rgrimes Exp $ +# $Id: netstart,v 1.27 1995/04/11 01:22:15 rgrimes Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 # If there is a global system configuration file, suck it in. @@ -51,7 +51,7 @@ if [ "x$gated" != "xNO" -o "x$routedflags" != "xNO" ] ; then # If $routedflags == NO, routed isn't run. if [ "X${gated}" = X"YES" -a -r /etc/gated.conf ]; then - echo -n ' gated'; gated $gatedflags + echo -n ' gated'; /usr/local/sbin/gated $gatedflags elif [ "X${routedflags}" != X"NO" ]; then echo -n ' routed'; routed $routedflags fi |