aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-03-10 16:40:53 +0000
committerErik Troan <ewt@redhat.com>1999-03-10 16:40:53 +0000
commit371606091761cab889cf492722b916ac5a859fd9 (patch)
treecf2b878c19e0f13abec77aaadac9c09ac0aaffbd
parentc6372620b691a1d4482126034b60d76edac44f67 (diff)
downloadinitscripts-371606091761cab889cf492722b916ac5a859fd9.tar
initscripts-371606091761cab889cf492722b916ac5a859fd9.tar.gz
initscripts-371606091761cab889cf492722b916ac5a859fd9.tar.bz2
initscripts-371606091761cab889cf492722b916ac5a859fd9.tar.xz
initscripts-371606091761cab889cf492722b916ac5a859fd9.zip
outdated by pump
-rw-r--r--sysconfig/network-scripts/ifdhcpc-done19
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