Changeset 8697
- Timestamp:
- 06/05/12 16:57:22 (13 months ago)
- Location:
- luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard
- Files:
-
- 15 modified
-
helpers/gen_bssid.sh (modified) (1 diff)
-
helpers/initial_config.sh (modified) (1 diff)
-
helpers/setup_dhcp.sh (modified) (1 diff)
-
helpers/setup_dnsmasq.sh (modified) (1 diff)
-
helpers/setup_firewall.sh (modified) (1 diff)
-
helpers/setup_firewall_interface.sh (modified) (1 diff)
-
helpers/setup_lan_ipv6.sh (modified) (1 diff)
-
helpers/setup_lan_static.sh (modified) (1 diff)
-
helpers/setup_network.sh (modified) (1 diff)
-
helpers/setup_olsrd.sh (modified) (1 diff)
-
helpers/setup_olsrd_interface.sh (modified) (1 diff)
-
helpers/setup_splash.sh (modified) (1 diff)
-
helpers/setup_wan_static.sh (modified) (1 diff)
-
helpers/setup_wifi.sh (modified) (1 diff)
-
wizard.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/gen_bssid.sh
r7368 r8697 6 6 community=$2 7 7 8 . / etc/functions.sh8 . /lib/functions.sh 9 9 10 10 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/initial_config.sh
r7610 r8697 3 3 # It sets up the initial config for this node. 4 4 5 . / etc/functions.sh5 . /lib/functions.sh 6 6 . $dir/functions.sh 7 7 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_dhcp.sh
r7846 r8697 2 2 # Sets up the dhcp part of dnsmasq 3 3 4 . / etc/functions.sh4 . /lib/functions.sh 5 5 . $dir/functions.sh 6 6 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_dnsmasq.sh
r8692 r8697 1 1 #!/bin/sh 2 2 3 . / etc/functions.sh3 . /lib/functions.sh 4 4 . $dir/functions.sh 5 5 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_firewall.sh
r8692 r8697 4 4 # Also setup rules defined in /etc/config/freifunk and /etc/config/profile_<community> 5 5 6 . / etc/functions.sh6 . /lib/functions.sh 7 7 . $dir/functions.sh 8 8 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_firewall_interface.sh
r7806 r8697 5 5 6 6 net=$1 7 . / etc/functions.sh7 . /lib/functions.sh 8 8 . $dir/functions.sh 9 9 config_load firewall -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_lan_ipv6.sh
r8692 r8697 3 3 [ ! "$(uci -q get network.lan)" == "interface" ] && exit 4 4 5 . / etc/functions.sh5 . /lib/functions.sh 6 6 . $dir/functions.sh 7 7 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_lan_static.sh
r7802 r8697 4 4 [ ! "$(uci -q get network.lan)" == "interface" ] && exit 5 5 6 . / etc/functions.sh6 . /lib/functions.sh 7 7 . $dir/functions.sh 8 8 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_network.sh
r8693 r8697 3 3 4 4 net="$1" 5 . / etc/functions.sh5 . /lib/functions.sh 6 6 . $dir/functions.sh 7 7 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd.sh
r8694 r8697 2 2 # Sets up olsrd 3 3 4 . / etc/functions.sh4 . /lib/functions.sh 5 5 . $dir/functions.sh 6 6 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_olsrd_interface.sh
r7846 r8697 5 5 net=$1 6 6 7 . / etc/functions.sh7 . /lib/functions.sh 8 8 . $dir/functions.sh 9 9 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_splash.sh
r7974 r8697 2 2 # Setup_splash, takes 1 argument: 1=net 3 3 4 . / etc/functions.sh4 . /lib/functions.sh 5 5 . $dir/functions.sh 6 6 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wan_static.sh
r7792 r8697 4 4 [ ! "$(uci -q get network.wan)" == "interface" ] && exit 5 5 6 . / etc/functions.sh6 . /lib/functions.sh 7 7 . $dir/functions.sh 8 8 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh
r7792 r8697 4 4 5 5 net="$1" 6 . / etc/functions.sh6 . /lib/functions.sh 7 7 . $dir/functions.sh 8 8 -
luci/trunk/contrib/package/meshwizard/files/usr/bin/meshwizard/wizard.sh
r8692 r8697 10 10 # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 11 11 12 . / etc/functions.sh12 . /lib/functions.sh 13 13 14 14 echo "
