diff options
| author | Mike Makonnen <mtm@FreeBSD.org> | 2004-02-27 10:44:33 +0000 |
|---|---|---|
| committer | Mike Makonnen <mtm@FreeBSD.org> | 2004-02-27 10:44:33 +0000 |
| commit | e0aca24352d557c6ecbbc36401ead45732278ebe (patch) | |
| tree | 30f354924c60dd5d664a88135a10b94f2375c81f /etc | |
| parent | ac9fd74eb166510c5030571d69174763f0557864 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/rc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (c) 2000 The FreeBSD Project +# Copyright (c) 2000-2004 The FreeBSD Project # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -66,7 +66,9 @@ else fi os=`eval ${CMD_OSTYPE}` -files=`rcorder -k ${os} -s nostart /etc/rc.d/* 2>/dev/null` +skip="nostart" +[ `/sbin/sysctl -n security.jail.jailed` -eq 1 ] && skip="$skip nojail" +files=`rcorder -k ${os} -s ${skip} /etc/rc.d/* 2>/dev/null` for _rc_elem in ${files}; do run_rc_script ${_rc_elem} ${_boot} |
