diff options
author | Bill Nottingham <notting@redhat.com> | 2008-11-24 15:07:46 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-11-24 15:10:03 -0500 |
commit | eab6a318a9182386cb585d1346dd5d7ed2ec1f8a (patch) | |
tree | 8424e45698bb5e4796abf5098dbdee748ac4dd5d /event.d/rcS | |
parent | 3b557715bdcd09e8347a5509d71f8822dab25643 (diff) | |
download | initscripts-eab6a318a9182386cb585d1346dd5d7ed2ec1f8a.tar initscripts-eab6a318a9182386cb585d1346dd5d7ed2ec1f8a.tar.gz initscripts-eab6a318a9182386cb585d1346dd5d7ed2ec1f8a.tar.bz2 initscripts-eab6a318a9182386cb585d1346dd5d7ed2ec1f8a.tar.xz initscripts-eab6a318a9182386cb585d1346dd5d7ed2ec1f8a.zip |
When looking for the default runlevel, don't match commented lines. (#472717)
Diffstat (limited to 'event.d/rcS')
-rw-r--r-- | event.d/rcS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/event.d/rcS b/event.d/rcS index b01ddc57..e50e897f 100644 --- a/event.d/rcS +++ b/event.d/rcS @@ -18,7 +18,7 @@ script end script post-stop script if [ "$UPSTART_EVENT" == "startup" ]; then - runlevel=$(/bin/awk -F ':' '$3 == "initdefault" { print $2 }' /etc/inittab) + runlevel=$(/bin/awk -F ':' '$3 == "initdefault" && $1 !~ "^#" { print $2 }' /etc/inittab) [ -z "$runlevel" ] && runlevel="3" for t in $(cat /proc/cmdline); do case $t in |