data/method/busybox/busybox-1.36.0/examples/var_service/dhcpd_if/run

24 lines
339 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
#!/bin/sh
exec 2>&1
exec </dev/null
pwd="$PWD"
if="${PWD##*/dhcpd_}"
echo "* Upping iface $if"
ip link set dev $if up || exec sleep 5
>>udhcpd.leases
sed 's/^interface.*$/interface '"$if/" -i udhcpd.conf
echo "* Starting udhcpd on $if [$$]"
exec \
env - PATH="$PATH" \
softlimit \
setuidgid root \
udhcpd -f -vv udhcpd.conf
exit $?