aboutsummaryrefslogtreecommitdiffstats
path: root/extra/dhcp/dhcp.post-upgrade
diff options
context:
space:
mode:
Diffstat (limited to 'extra/dhcp/dhcp.post-upgrade')
-rw-r--r--extra/dhcp/dhcp.post-upgrade18
1 files changed, 0 insertions, 18 deletions
diff --git a/extra/dhcp/dhcp.post-upgrade b/extra/dhcp/dhcp.post-upgrade
deleted file mode 100644
index b16fea6b4a..0000000000
--- a/extra/dhcp/dhcp.post-upgrade
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# we have renamed dhcp to dhcpd. Try cleanup for users
-
-moved=
-for i in /etc/runlevel/*/dhcp; do
- if [ -L "$i" ]; then
- mv ${i} ${i}d
- moved=1
- fi
-done
-
-if [ -n "$moved" ]; then
- echo " *"
- echo " * NOTICE: the /etc/init.d/dhcp script have been renamed to /etc/init.d/dhcpd"
- echo " *"
-fi
-