diff options
Diffstat (limited to 'sysconfig/network-scripts')
-rw-r--r-- | sysconfig/network-scripts/ifdhcpc-done | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sysconfig/network-scripts/ifdhcpc-done b/sysconfig/network-scripts/ifdhcpc-done deleted file mode 100644 index 5444f105..00000000 --- a/sysconfig/network-scripts/ifdhcpc-done +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -SLEEPPIDFILE=/var/run/dhcp-wait-${IFNAME}.pid - -if [ ! -f $SLEEPPIDFILE ]; then - # the parent must have timed out already -- we can't do much about - # it now - echo "DHCP configured but ifup timed out" - #exit 0 -fi - -# get the pid of the process which is waiting for this to complete -SLEEPPID=`cat $SLEEPPIDFILE` -rm -f $SLEEPPIDFILE -kill $SLEEPPID - -if [ -f /etc/dhcpc/resolv.conf ]; then - cp /etc/dhcpc/resolv.conf /etc -fi |