aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ikev2/dhcp-static-client-id
diff options
context:
space:
mode:
authorReto Buerki <reet@codelabs.ch>2013-01-16 10:16:58 +0100
committerTobias Brunner <tobias@strongswan.org>2013-01-17 16:55:03 +0100
commitc25f8506011d8f578dec8825cd797c4f914edb81 (patch)
tree51075edc9deadc8e1f0e1a2af57188d3b0ab5561 /testing/tests/ikev2/dhcp-static-client-id
parent530f7b84214814359942f9a1943fba643321bcea (diff)
downloadstrongswan-c25f8506011d8f578dec8825cd797c4f914edb81.tar.bz2
strongswan-c25f8506011d8f578dec8825cd797c4f914edb81.tar.xz
Drop obsolete Gentoo dhcpd init script
Diffstat (limited to 'testing/tests/ikev2/dhcp-static-client-id')
-rwxr-xr-xtesting/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/init.d/dhcpd24
1 files changed, 0 insertions, 24 deletions
diff --git a/testing/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/init.d/dhcpd b/testing/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/init.d/dhcpd
deleted file mode 100755
index 4044dcc35..000000000
--- a/testing/tests/ikev2/dhcp-static-client-id/hosts/venus/etc/init.d/dhcpd
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-opts="start stop"
-
-depend() {
- need net
- need logger
-}
-
-start() {
- ebegin "Starting DHCP server"
- start-stop-daemon --start --quiet --exec /usr/sbin/dhcpd
- eend $?
-}
-
-stop() {
- ebegin "Stopping DHCP server"
- start-stop-daemon --stop --quiet --pidfile /var/run/dhcpd.pid
- rm -f /var/state/dhcp/dhcpd.leases
- touch /var/state/dhcp/dhcpd.leases
- eend $?
-}