mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Back out the previous commit, since there could be dire consequences if
/etc/rc were accidentally executed (as requested by other committeers).
This commit is contained in:
parent
54d85f9100
commit
f45a1cab59
2 changed files with 3 additions and 7 deletions
|
|
@ -12,8 +12,8 @@ BIN1= amd.map apmd.conf auth.conf \
|
|||
inetd.conf login.access login.conf \
|
||||
mac.conf motd netconfig networks newsyslog.conf \
|
||||
phones printcap profile protocols \
|
||||
rc.atm rc.devfs rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 \
|
||||
rc.network rc.network6 rc.pccard rc.sendmail rc.serial \
|
||||
rc rc.atm rc.devfs rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 \
|
||||
rc.network rc.network6 rc.pccard rc.sendmail rc.serial rc.shutdown \
|
||||
rc.subr rc.syscons rc.sysctl remote rpc services \
|
||||
shells sysctl.conf syslog.conf usbd.conf \
|
||||
etc.${MACHINE_ARCH}/disktab \
|
||||
|
|
@ -37,7 +37,7 @@ SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
|
|||
.endif
|
||||
|
||||
# -rwxr-xr-x root:wheel, for the new cron root:wheel
|
||||
BIN2= netstart pccard_ether rc.suspend rc.resume rc rc.shutdown
|
||||
BIN2= netstart pccard_ether rc.suspend rc.resume
|
||||
|
||||
DEFAULTS= rc.conf pccard.conf periodic.conf
|
||||
|
||||
|
|
|
|||
|
|
@ -737,8 +737,6 @@ runcom(void)
|
|||
#ifdef LOGIN_CAP
|
||||
setprocresources(RESOURCE_RC);
|
||||
#endif
|
||||
execv(_PATH_RUNCOM, argv + 1);
|
||||
warning("can't exec %s: %m", _PATH_RUNCOM);
|
||||
execv(_PATH_BSHELL, argv);
|
||||
stall("can't exec %s for %s: %m", _PATH_BSHELL, _PATH_RUNCOM);
|
||||
_exit(1); /* force single user mode */
|
||||
|
|
@ -1499,8 +1497,6 @@ runshutdown(void)
|
|||
#ifdef LOGIN_CAP
|
||||
setprocresources(RESOURCE_RC);
|
||||
#endif
|
||||
execv(_PATH_RUNDOWN, argv + 1);
|
||||
warning("can't exec %s: %m", _PATH_RUNDOWN);
|
||||
execv(_PATH_BSHELL, argv);
|
||||
warning("can't exec %s for %s: %m", _PATH_BSHELL, _PATH_RUNDOWN);
|
||||
_exit(1); /* force single user mode */
|
||||
|
|
|
|||
Loading…
Reference in a new issue