blob: bd6f3d2b13f2c2d9fea42c09ffd07cfbc09f9305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
uci -q get dhcp.isc_dhcpcd && exit 0
touch /etc/config/dhcp
uci batch <<EOF
set dhcp.isc_dhcpd=isc_dhcpd
set dhcp.isc_dhcpd.authoritative='1'
set dhcp.isc_dhcpd.default_lease_time='3600'
set dhcp.isc_dhcpd.max_lease_time='86400'
commit dhcp
EOF
|