aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup
diff options
context:
space:
mode:
authorHarald Hoyer <harald@redhat.com>2008-09-16 10:02:51 +0200
committerHarald Hoyer <harald@redhat.com>2008-09-16 10:38:10 +0200
commita31538409a960560f35494ff30a6181f16d1d6de (patch)
tree0dfd042d96d1a68d294497f6e857741cc6b4b084 /sysconfig/network-scripts/ifup
parentcefaaa0dd6b2d60f674875cc8b86d5846e8033f7 (diff)
downloadinitscripts-a31538409a960560f35494ff30a6181f16d1d6de.tar
initscripts-a31538409a960560f35494ff30a6181f16d1d6de.tar.gz
initscripts-a31538409a960560f35494ff30a6181f16d1d6de.tar.bz2
initscripts-a31538409a960560f35494ff30a6181f16d1d6de.tar.xz
initscripts-a31538409a960560f35494ff30a6181f16d1d6de.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 'sysconfig/network-scripts/ifup')
-rwxr-xr-xsysconfig/network-scripts/ifup6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index f22cc851..be8b181a 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -103,7 +103,7 @@ if [ -x /sbin/vconfig -a "${VLAN}" = "yes" -a "$ISALIAS" = "no" ]; then
if [ ! -f /proc/net/vlan/${DEVICE} ]; then
/sbin/vconfig add ${PHYSDEV} ${VID} || {
- (logger -p daemon.info -t ifup \
+ (/usr/bin/logger -p daemon.info -t ifup \
$"ERROR: could not add vlan ${VID} as ${DEVICE} on dev ${PHYSDEV}" &)&
echo $"ERROR: could not add vlan ${VID} as ${DEVICE} on dev ${PHYSDEV}"
exit 1
@@ -114,13 +114,13 @@ if [ -x /sbin/vconfig -a "${VLAN}" = "yes" -a "$ISALIAS" = "no" ]; then
case "$REORDER_HDR" in
yes|1)
/sbin/vconfig set_flag ${DEVICE} 1 1 || {
- (logger -p daemon.info -t ifup \
+ (/usr/bin/logger -p daemon.info -t ifup \
"WARNING: vconfig not able to enable REORDER_HDR on ${DEVICE}" &)&
}
;;
no|0)
/sbin/vconfig set_flag ${DEVICE} 1 0 || {
- (logger -p daemon.info -t ifup \
+ (/usr/bin/logger -p daemon.info -t ifup \
$"WARNING: vconfig not able to disable REORDER_HDR on ${DEVICE}" &)&
}
;;