contrib/meshwizard: Various fixes and cleanups
[project/luci.git] / contrib / package / meshwizard / files / usr / bin / meshwizard / wizard.sh
1 #!/bin/sh
2
3 # This collection of scripts will take settings from /etc/config/meshwizard, /etc/config/freifunk
4 # and /etc/config/profile_<community> and setup the router to participate in wireless mesh networks
5
6 # Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
7
8 # Licensed under the Apache License, Version 2.0 (the "License")
9 # You may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
11
12 . /etc/functions.sh
13
14 echo "
15 /* Meshwizard 0.0.4 */
16 "
17
18 # config
19 export dir="/usr/bin/meshwizard"
20 . $dir/functions.sh
21
22 # Check which packages we have installed
23 export has_luci=FALSE
24 opkg list_installed |grep luci-mod-admin > /dev/null && export has_luci=TRUE
25 export has_luci_splash=FALSE
26 opkg list_installed |grep luci-app-splash > /dev/null && export has_luci_splash=TRUE
27
28 # Check whether we want to cleanup/restore uci config before setting new options
29 cleanup=$(uci -q get meshwizard.general.cleanup)
30 [ "$cleanup" == 1 ] && $dir/helpers/restore_default_config.sh
31
32 # Rename wifi interfaces
33 $dir/helpers/rename-wifi.sh
34
35 # Get community
36 community=$(uci -q get meshwizard.community.name || uci -q get freifunk.community.name)
37 [ -z "$community" ] && echo "Error: Community is not set in /etc/config/freifunk, aborting now." && exit 1
38 export community="$community"
39
40 # Get a list of networks we need to setup
41 networks=$(uci show meshwizard.netconfig | grep -v "netconfig=" | sed -e 's/meshwizard.netconfig\.\(.*\)\_.*/\1/' |sort|uniq)
42 export networks
43 [ -z "$networks" ] && echo "Error: No networks to setup could be found in /etc/config/meshwizard, aborting now." && exit 1
44
45 # Read default values (first from /etc/config/freifunk, then from /etc/config/profile_$community
46 # then /etc/config/meshwizard
47 # last will overwrite first
48
49 $dir/helpers/read_defaults.sh $community > /tmp/meshwizard.tmp
50 while read line; do
51         export "${line//\"/}"
52 done < /tmp/meshwizard.tmp
53
54 # Do config
55 $dir/helpers/initial_config.sh
56 $dir/helpers/setup_dnsmasq.sh
57 $dir/helpers/setup_system.sh
58
59 # Configure found networks
60 for net in $networks; do
61         # radioX devices need to be renamed
62         netrenamed="${net/radio/wireless}"
63         export netrenamed
64         $dir/helpers/setup_network.sh $net
65         $dir/helpers/setup_wifi.sh $net
66         $dir/helpers/setup_olsrd.sh $net
67
68         net_dhcp=$(uci -q get meshwizard.netconfig.${net}_dhcp)
69         if [ "$net_dhcp" == 1 ]; then
70                 $dir/helpers/setup_dhcp.sh $net
71         fi
72
73         $dir/helpers/setup_splash.sh $net
74         $dir/helpers/setup_firewall.sh $net
75 done
76
77 ##### Reboot the router (because simply restarting services gave errors)
78
79 reboot