summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/init.d/udhcpd
blob: a10226e4866e5ce9a36e98cad6586f7dfbde19ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# /etc/init.d/udhcpd
#
# $Id$
#

if [ -f /usr/sbin/udhcpd ]; then
	echo "Starting udhcpd..."
	/usr/sbin/udhcpd
	exit 0
fi

if [ -f /sbin/udhcpd ]; then
	echo "Starting udhcpd..."
	/sbin/udhcpd -d
	exit 0
fi

echo "No udhcpd found. Aborting"