mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
07515b0b69
This patch enables the functionality for dhcpd service to be started
with dhcp uid and gid.
Test steps:
Step 1: Assign ip to interface
ifconfig eth0 192.168.1.1
Step 2: Edit /etc/dhcp/dhcpd.conf:
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
subnet 192.168.1.0 netmask 255.255.255.0 {
option broadcast-address 192.168.1.255;
range 192.168.1.88 192.168.1.88;
option routers 192.168.1.0;
}
Step 3: Edit /etc/default/dhcp-server:
INTERFACES="eth0"
Step 4: Check uid and gid of running dhcpd process
$ ps -eo user:19,group:19,cmd | grep dhcpd
dhcp dhcp /usr/sbin/dhcpd eth0 -user dhcp -group dhcp
(From OE-Core rev: 36d59255131f6d3f289d4f5dfcb58a9890996ffe)
Signed-off-by: Alexandru Moise <alexandru.moise@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
45 lines
1009 B
Bash
45 lines
1009 B
Bash
#!/bin/sh
|
|
#
|
|
# $Id: dhcp3-server.init.d,v 1.4 2003/07/13 19:12:41 mdz Exp $
|
|
#
|
|
|
|
test -f /usr/sbin/dhcpd || exit 0
|
|
|
|
# It is not safe to start if we don't have a default configuration...
|
|
if [ ! -f /etc/default/dhcp-server ]; then
|
|
echo "/etc/default/dhcp-server does not exist! - Aborting..."
|
|
exit 0
|
|
fi
|
|
|
|
# Read init script configuration (so far only interfaces the daemon
|
|
# should listen on.)
|
|
. /etc/default/dhcp-server
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting DHCP server: "
|
|
test -d /var/lib/dhcp/ || mkdir -p /var/lib/dhcp/
|
|
test -f /var/lib/dhcp/dhcpd.leases || touch /var/lib/dhcp/dhcpd.leases
|
|
start-stop-daemon -S -x /usr/sbin/dhcpd -- -q $INTERFACES -user dhcp -group dhcp
|
|
echo "."
|
|
;;
|
|
stop)
|
|
echo -n "Stopping DHCP server: dhcpd3"
|
|
start-stop-daemon -K -x /usr/sbin/dhcpd
|
|
echo "."
|
|
;;
|
|
restart | force-reload)
|
|
$0 stop
|
|
sleep 2
|
|
$0 start
|
|
if [ "$?" != "0" ]; then
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Usage: /etc/init.d/dhcp-server {start|stop|restart|force-reload}"
|
|
exit 1
|
|
esac
|
|
|
|
exit 0
|