contrib/meshwizard: setup mapservers from profile

This commit is contained in:
Manuel Munz 2013-02-28 19:53:34 +00:00
parent d5fc0a0cef
commit 2a8c5dbf2f

View file

@ -19,7 +19,16 @@ if [ -n "$(uci -q get meshwizard.community)" ]; then
set_defaults "community_" freifunk.community
uci -q delete meshwizard.community
fi
[ -n "$profile_homepage" ] && uci set freifunk.community.homepage="$profile_homepage"
[ -n "$profile_mapserver" ] && {
uci -q delete freifunk.community.mapserver
for m in $profile_mapserver; do
uci add_list freifunk.community.mapserver="$m"
done
}
uci_commitverbose "Setup community" freifunk
if [ -n "$(uci -q get meshwizard.contact)" ]; then