diff options
author | Bill Nottingham <notting@redhat.com> | 2006-09-21 18:48:24 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2006-09-21 18:48:24 +0000 |
commit | 83012d01b98da92b1172ed057b048a734a684bdf (patch) | |
tree | b2919bd8eb46fc94f80ef18c997f3e6ec6a6975a /rc.d | |
parent | 2ec4dc57fc2d5edb4e14bf7c757a68df8dcd5526 (diff) | |
download | initscripts-83012d01b98da92b1172ed057b048a734a684bdf.tar initscripts-83012d01b98da92b1172ed057b048a734a684bdf.tar.gz initscripts-83012d01b98da92b1172ed057b048a734a684bdf.tar.bz2 initscripts-83012d01b98da92b1172ed057b048a734a684bdf.tar.xz initscripts-83012d01b98da92b1172ed057b048a734a684bdf.zip |
run with -m so that subprocesses get their own process group (part of
#184340)
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc | 2 | ||||
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,8 @@ # Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org> # +set -m + # check a file to be a correct runlevel script check_runlevel () { diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 45c2e6fe..d257e128 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -9,6 +9,8 @@ HOSTNAME=`/bin/hostname` HOSTTYPE=`uname -m` unamer=`uname -r` +set -m + if [ -f /etc/sysconfig/network ]; then . /etc/sysconfig/network fi |