1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 19:11:51 +00:00
openmptcprouter-feeds/openmptcprouter/files/etc/uci-defaults/2000-omr-dhcp

15 lines
273 B
Text
Raw Normal View History

2018-04-05 15:29:05 +00:00
#!/bin/sh
2020-09-11 12:14:52 +00:00
if [ "$(uci -q get openmptcprouter.settings.disable_ipv6)" != "0" ]; then
uci -q batch <<-EOF >/dev/null
2020-12-09 13:59:23 +00:00
delete dhcp.lan.ra_default
delete dhcp.lan.dhcpv6
delete dhcp.lan.ra
2020-09-11 12:14:52 +00:00
set dhcp.lan.force=1
commit dhcp
EOF
rm -f /tmp/luci-indexcache
fi
2018-04-05 15:29:05 +00:00
exit 0