summaryrefslogtreecommitdiffstats
path: root/etc/rc
diff options
context:
space:
mode:
authorpaul <paul@FreeBSD.org>1995-09-18 19:17:14 +0000
committerpaul <paul@FreeBSD.org>1995-09-18 19:17:14 +0000
commit36d9e3521826f732a3e500c5f303cef9c7b4604d (patch)
tree16e65e85fdeb2c77eda5871dae97a2b38c3bb11b /etc/rc
parent2f1196a64aad29784c59ba8eb8384dc16d6ceb8d (diff)
downloadFreeBSD-src-36d9e3521826f732a3e500c5f303cef9c7b4604d.zip
FreeBSD-src-36d9e3521826f732a3e500c5f303cef9c7b4604d.tar.gz
Removed startup code for pcnfsd and apache. These don't even exist
in FreeBSD and should never have got in here. Removed hard-coded /etc/rc.local.d hacks and implemented a more flexible solution. Added a local configuration area to sysconfig.
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc16
1 files changed, 3 insertions, 13 deletions
diff --git a/etc/rc b/etc/rc
index 7d447bb..5314d47 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.69 1995/09/14 02:44:47 jkh Exp $
+# $Id: rc,v 1.70 1995/09/18 07:38:18 jkh Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -226,16 +226,6 @@ if [ "X${amdflags}" != X"NO" ]; then
echo -n ' amd'; amd ${amdflags}
fi
-# These should go elsewhere but netstart is too early and I don't
-# want to touch rc.local, so...
-if [ "X${pcnfsd}" = X"YES" -a -x /usr/local/libexec/rpc.pcnfsd ]; then
- echo -n ' rpc.pcnfsd'; /usr/local/libexec/rpc.pcnfsd &
-fi
-
-if [ "X${apache_httpd}" = X"YES" -a -x /usr/local/www/server/httpd ]; then
- echo -n ' apache httpd'; /usr/local/www/server/httpd &
-fi
-
# Kerberos runs ONLY on the Kerberos server machine
if [ "X${kerberos_server}" = X"YES" ]; then
echo -n ' kerberos'; kerberos >> /var/log/kerberos.log &
@@ -302,8 +292,8 @@ if [ -f /etc/rc.$arch ]; then
. /etc/rc.$arch
fi
-if [ -d /etc/rc.local.d ]; then
- for script in /etc/rc.local.d/*.sh; do
+if [ "X${local_startup}" != X"NO" -a -d $local_startup ]; then
+ for script in $local_startup/*.sh; do
[ -x $script ] && $script start
done
fi
OpenPOWER on IntegriCloud