aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d/netconsole
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2008-09-16 10:02:51 +0200
committerBill Nottingham <notting@redhat.com>2008-09-16 20:05:00 -0400
commit0e44773240e01476b2709f9d206b86d5dfecffcf (patch)
tree9930231a2e81780edd330d213f544a0c852d2e31 /rc.d/init.d/netconsole
parent2352139e72dfe38a3993fc5b7509544d0a2492e2 (diff)
downloadinitscripts-0e44773240e01476b2709f9d206b86d5dfecffcf.tar
initscripts-0e44773240e01476b2709f9d206b86d5dfecffcf.tar.gz
initscripts-0e44773240e01476b2709f9d206b86d5dfecffcf.tar.bz2
initscripts-0e44773240e01476b2709f9d206b86d5dfecffcf.tar.xz
initscripts-0e44773240e01476b2709f9d206b86d5dfecffcf.zip
https://bugzilla.redhat.com/show_bug.cgi?id=447928
All networking scripts from /etc/sysconfig/network-scripts call logger without full path. This can prevent system from booting if let's say dcc is installed when compiled with wrong parameters and installs /usr/sbin/logger (see bellow) It's not really a bug but this can be easily prevented. All /etc/init.d scripts use full path for logger network-scripts should use it also
Diffstat (limited to 'rc.d/init.d/netconsole')
-rw-r--r--rc.d/init.d/netconsole2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netconsole b/rc.d/init.d/netconsole
index 3a29c96b..5f6c3020 100644
--- a/rc.d/init.d/netconsole
+++ b/rc.d/init.d/netconsole
@@ -85,7 +85,7 @@ start ()
SYSLOGOPTS="netconsole=$LOCALPORT@$LOCALADDR/$DEV,$SYSLOGPORT@$SYSLOGADDR/$SYSLOGMACADDR "
- logger -p daemon.info -t netconsole: inserting netconsole module with arguments \
+ /usr/bin/logger -p daemon.info -t netconsole: inserting netconsole module with arguments \
$SYSLOGOPTS
if [ -n "$SYSLOGOPTS" ]; then
action $"Initializing netconsole" modprobe netconsole \