Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
6
package/network/services/odhcpd/files/odhcpd-update
Executable file
6
package/network/services/odhcpd/files/odhcpd-update
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
# Make dnsmasq reread hostfile by sending SIGHUP signal
|
||||
|
||||
. /lib/functions/procd.sh
|
||||
|
||||
procd_send_signal dnsmasq
|
||||
52
package/network/services/odhcpd/files/odhcpd.defaults
Normal file
52
package/network/services/odhcpd/files/odhcpd.defaults
Normal file
@@ -0,0 +1,52 @@
|
||||
#!/bin/sh
|
||||
uci -q get dhcp.odhcpd && exit 0
|
||||
touch /etc/config/dhcp
|
||||
|
||||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
json_load "$(cat /etc/board.json)"
|
||||
json_select network
|
||||
json_select lan
|
||||
json_get_vars protocol
|
||||
json_select ..
|
||||
json_select ..
|
||||
|
||||
ODHCPDONLY=0
|
||||
V4MODE=disabled
|
||||
V6MODE=disabled
|
||||
|
||||
[ -e /usr/sbin/dnsmasq ] || ODHCPDONLY=1
|
||||
|
||||
case "$protocol" in
|
||||
# only enable server mode on statically addressed lan ports
|
||||
"static")
|
||||
V4MODE=server
|
||||
[ -e /proc/sys/net/ipv6 ] && V6MODE=server
|
||||
;;
|
||||
esac
|
||||
|
||||
uci get dhcp.lan 1>/dev/null 2>/dev/null || {
|
||||
uci batch <<EOF
|
||||
set dhcp.lan=dhcp
|
||||
set dhcp.lan.interface='lan'
|
||||
set dhcp.lan.start='100'
|
||||
set dhcp.lan.limit='150'
|
||||
set dhcp.lan.leasetime='12h'
|
||||
set dhcp.lan.domain='lan'
|
||||
EOF
|
||||
}
|
||||
|
||||
uci batch <<EOF
|
||||
set dhcp.odhcpd=odhcpd
|
||||
set dhcp.odhcpd.maindhcp=$ODHCPDONLY
|
||||
set dhcp.odhcpd.leasefile=/tmp/hosts/odhcpd
|
||||
set dhcp.odhcpd.leasetrigger=/usr/sbin/odhcpd-update
|
||||
set dhcp.odhcpd.loglevel=4
|
||||
set dhcp.lan.dhcpv4=$V4MODE
|
||||
set dhcp.lan.dhcpv6=$V6MODE
|
||||
set dhcp.lan.ra=$V6MODE
|
||||
set dhcp.lan.ra_slaac=1
|
||||
add_list dhcp.lan.ra_flags=managed-config
|
||||
add_list dhcp.lan.ra_flags=other-config
|
||||
commit dhcp
|
||||
EOF
|
||||
22
package/network/services/odhcpd/files/odhcpd.init
Normal file
22
package/network/services/odhcpd/files/odhcpd.init
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=35
|
||||
STOP=85
|
||||
USE_PROCD=1
|
||||
|
||||
start_service() {
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/odhcpd
|
||||
procd_set_param respawn
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
reload_service() {
|
||||
procd_send_signal odhcpd
|
||||
}
|
||||
|
||||
service_triggers()
|
||||
{
|
||||
procd_add_reload_trigger "dhcp"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user