1d1e248593b64c37df0cbf6e35591a6a13113427
[project/luci.git] / contrib / package / meshwizard / files / usr / bin / meshwizard / helpers / setup_splash.sh
1 #!/bin/sh
2 # Setup_splash, takes 1 argument: 1=net
3
4 . /etc/functions.sh
5 . $dir/functions.sh
6
7 net=$1
8
9 if [ ! "$has_luci_splash" == TRUE ]; then
10         echo "    Luci Splash is not installed, skipping setup of it."
11         exit
12 fi
13
14 handle_splash() {
15         config_get network "$1" network
16         if [ "$network" == "${netrenamed}dhcp" ]; then
17                 if [ -z "${1/cfg[0-9a-fA-F]*/}" ]; then
18                         section_rename luci_splash $1 ${netrenamed}dhcp
19                 fi
20         fi
21 }
22 config_load luci_splash
23 config_foreach handle_splash iface
24
25 uci batch << EOF
26 set luci_splash.${netrenamed}dhcp="iface"
27 set luci_splash.${netrenamed}dhcp.network="${netrenamed}dhcp"
28 set luci_splash.${netrenamed}dhcp.zone="freifunk"
29 EOF
30
31 uci_commitverbose "Setup dhcpsplash for ${netrenamed}dhcp" luci_splash
32
33 /etc/init.d/luci_splash enable
34