mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
7cdf74e163
When running sysupgrade from an existing configuration, move existing ipset definitions to a dedicated config section. Later on, it will allow to serve ipset as well as nftable sets from the same configuration. Signed-off-by: Mathias Kresin <dev@kresin.me>
33 lines
509 B
Bash
Executable File
33 lines
509 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ipsets=$(uci -q get dhcp.@dnsmasq[0].ipset)
|
|
[ -z "$ipsets" ] && exit 0
|
|
|
|
for ipset in $ipsets; do
|
|
names=${ipset##*/}
|
|
domains=${ipset%/*}
|
|
|
|
[ -z "$names" ] || [ -z "$domains" ] && continue
|
|
|
|
uci add dhcp ipset
|
|
|
|
OLDIFS="$IFS"
|
|
|
|
IFS=","
|
|
for name in $names; do
|
|
uci add_list dhcp.@ipset[-1].name="$name"
|
|
done
|
|
|
|
IFS="/"
|
|
for domain in ${domains:1}; do
|
|
uci add_list dhcp.@ipset[-1].domain="$domain"
|
|
done
|
|
|
|
IFS="$OLDIFS"
|
|
|
|
uci del_list dhcp.@dnsmasq[0].ipset="$ipset"
|
|
done
|
|
|
|
uci commit dhcp
|
|
exit 0
|