contrib/meshwizard: Check if luci/luci-splash is installed before trying to setup it
[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 [ "$cleanup" == 1 ]; then
18 section_cleanup luci_splash.$1
19 else
20 if [ -z "${1/cfg[0-9a-fA-F]*/}" ]; then
21 section_rename luci_splash $1 ${netrenamed}dhcp
22 fi
23 fi
24 fi
25 }
26 config_load luci_splash
27 config_foreach handle_splash iface
28
29 uci batch << EOF
30 set luci_splash.${netrenamed}dhcp="iface"
31 set luci_splash.${netrenamed}dhcp.network="${netrenamed}dhcp"
32 set luci_splash.${netrenamed}dhcp.zone="freifunk"
33 EOF
34
35 uci_commitverbose "Setup dhcpsplash for ${netrenamed}dhcp" luci_splash
36
37 /etc/init.d/luci_splash enable
38