diff options
| author | Bill Nottingham <notting@redhat.com> | 2002-04-19 16:08:36 +0000 |
|---|---|---|
| committer | Bill Nottingham <notting@redhat.com> | 2002-04-19 16:08:36 +0000 |
| commit | dcf6b34757ccef47ea87e46e226fd96c271c879c (patch) | |
| tree | 85b8b5a7ecff39f682e5b5016e35c3530a6887b4 /sysconfig | |
| parent | f875143dde7a0ef969ac264b9797dc9876ba62f9 (diff) | |
| download | initscripts-dcf6b34757ccef47ea87e46e226fd96c271c879c.tar.gz initscripts-dcf6b34757ccef47ea87e46e226fd96c271c879c.tar.xz initscripts-dcf6b34757ccef47ea87e46e226fd96c271c879c.zip | |
wrong fix (aside from the syntax issue) - the dhcpcd pid file moved,
just deal with the new location
Diffstat (limited to 'sysconfig')
| -rwxr-xr-x | sysconfig/network-scripts/ifdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown index 6aa00b61..bcbab1f0 100755 --- a/sysconfig/network-scripts/ifdown +++ b/sysconfig/network-scripts/ifdown @@ -69,8 +69,8 @@ fi retcode=0 if [ "$BOOTPROTO" = bootp -o "$BOOTPROTO" = dhcp ]; then - [ -n "`pidof -x dhcpcd`" && -r "/var/run/dhcpcd-${DEVICE}.pid" ] && { - kill `cat /var/run/dhcpcd-${DEVICE}.pid` + [ -n "`pidof -x dhcpcd`" ] && { + kill `cat /etc/dhcpc/dhcpcd-${DEVICE}.pid` retcode=$? } [ -n "`pidof -x pump`" ] && { |
