Marc e676793328
Update Modules for 2.6.0+ (Wave 1) (#71)
* Misc: Ignore JetBrains IDE files

* Modules: Update Modules for 2.6.0 (1)

* SiteSurvey: Actually install mdk3 dependency.

* Modules: Bump version numbers for updated modules
2019-08-21 21:15:53 +01:00

32 lines
620 B
Bash
Executable File

#!/bin/sh
#2015 - Whistle Master
logger "== SITESURVEY INSTALL SCRIPT"
[[ -f /tmp/SiteSurvey.progress ]] && {
exit 0
}
touch /tmp/SiteSurvey.progress
if [ "$1" = "install" ]; then
if [ "$2" = "internal" ]; then
opkg update
opkg install mdk3
elif [ "$2" = "sd" ]; then
opkg update
opkg install mdk3 --dest=sd
fi
touch /etc/config/sitesurvey
echo "config sitesurvey 'module'" > /etc/config/sitesurvey
uci set sitesurvey.module.installed=1
uci commit sitesurvey.module.installed
elif [ "$1" = "remove" ]; then
rm -rf /etc/config/sitesurvey
fi
rm /tmp/SiteSurvey.progress