summaryrefslogtreecommitdiffstats
path: root/etc/rc.network
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-08-14 06:55:17 +0000
committerphk <phk@FreeBSD.org>1998-08-14 06:55:17 +0000
commitdccdd3ccd1738f442d9ffeca074ed873fc32e1e7 (patch)
tree822fcedd8f8e2e4f5e2044342516864520783ba5 /etc/rc.network
parent2c8163b83dfd4121eee4cfd74283aa1a5bd12e68 (diff)
downloadFreeBSD-src-dccdd3ccd1738f442d9ffeca074ed873fc32e1e7.zip
FreeBSD-src-dccdd3ccd1738f442d9ffeca074ed873fc32e1e7.tar.gz
In /etc/rc.network, near line 242, setting up Kerberos,
variable "stash_flag" is set. A few lines later, it is evaluated as "stash_flags" with a trailing "s", and then a bit later the singular version is unset. PR: 7609 Reviewed by: phk Submitted by: Walt Howard <howard@ee.utah.edu>
Diffstat (limited to 'etc/rc.network')
-rw-r--r--etc/rc.network6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.network b/etc/rc.network
index c41d7ac..74743ae 100644
--- a/etc/rc.network
+++ b/etc/rc.network
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.27 1998/06/14 16:31:03 steve Exp $
+# $Id: rc.network,v 1.28 1998/07/08 15:40:53 nectar Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -260,10 +260,10 @@ network_pass3() {
stash_flag=
fi
echo -n ' kerberos'; \
- kerberos ${stash_flags} >> /var/log/kerberos.log &
+ kerberos ${stash_flag} >> /var/log/kerberos.log &
if [ "X${kadmind_server_enable}" = "XYES" ]; then
echo -n ' kadmind'; \
- (sleep 20; kadmind ${stash_flags} >/dev/null 2>&1 &) &
+ (sleep 20; kadmind ${stash_flag} >/dev/null 2>&1 &) &
fi
unset stash_flag
fi
OpenPOWER on IntegriCloud