diff options
| author | Bill Nottingham <notting@redhat.com> | 2008-05-22 11:54:14 -0400 |
|---|---|---|
| committer | Bill Nottingham <notting@redhat.com> | 2008-05-22 11:54:14 -0400 |
| commit | 277d1d979e3c99e691fb4b03b0c5fbcee95776c5 (patch) | |
| tree | 298cc02b081dc27cd50c4cd0c87db74b6ce92776 /sysconfig/network-scripts/ifup-sl | |
| parent | 82667229b118eaf799cd29739d5dd5a84cafe23b (diff) | |
Use a full path for logger. (#447928)
Diffstat (limited to 'sysconfig/network-scripts/ifup-sl')
| -rwxr-xr-x | sysconfig/network-scripts/ifup-sl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-sl b/sysconfig/network-scripts/ifup-sl index a9eae832..4db61641 100755 --- a/sysconfig/network-scripts/ifup-sl +++ b/sysconfig/network-scripts/ifup-sl @@ -31,7 +31,7 @@ fi [ -x /usr/sbin/dip ] || { echo $"/usr/sbin/dip does not exist or is not executable" echo $"ifup-sl for $DEVICE exiting" - logger -p daemon.info -t ifup-sl \ + /usr/bin/logger -p daemon.info -t ifup-sl \ $"/usr/sbin/dip does not exist or is not executable for $DEVICE" exit 1 } @@ -43,14 +43,14 @@ DIPSCRIPT=/etc/sysconfig/network-scripts/dip-$DEVNAME [ -f $DIPSCRIPT ] || { echo $"/etc/sysconfig/network-scripts/dip-$DEVICE does not exist" echo $"ifup-sl for $DEVICE exiting" - logger -p daemon.info -t ifup-sl \ + /usr/bin/logger -p daemon.info -t ifup-sl \ $"/etc/sysconfig/network-scripts/dip-$DEVICE does not exist for $DEVICE" exit 1 } while : ; do echo > /var/run/sl-$DEVICE.dev - (logger -p daemon.info -t ifup-sl \ + (/usr/bin/logger -p daemon.info -t ifup-sl \ $"dip started for $DEVICE on $MODEMPORT at $LINESPEED" &)& doexec /usr/sbin/dip dip-$DEVICE $DIPSCRIPT if [ "$PERSIST" != "yes" -o ! -f /var/run/sl-$DEVICE.dev ] ; then |
