1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #!/bin/bash
- ynh_setting() {
- app=${1}
- setting=${2}
- sudo grep "^${setting}:" "/etc/yunohost/apps/${app}/settings.yml" | sed s/^[^:]\\+:\\s*[\"\']\\?// | sed s/\\s*[\"\']\$//
- }
- domain=$(ynh_setting hotspot domain)
- path=$(ynh_setting hotspot path)
- wifi_ssid=$(ynh_setting hotspot wifi_ssid)
- wifi_passphrase=$(ynh_setting hotspot wifi_passphrase)
- if dpkg -l firmware-linux-nonfree &> /dev/null; then
- firmware_nonfree=yes
- else
- firmware_nonfree=no
- fi
- tmpdir=$(mktemp -dp /tmp/ hotspot-upgrade-XXXXX)
- sudo cp -a /etc/yunohost/apps/hotspot/settings.yml "${tmpdir}/"
- export HOTSPOT_UPGRADE=1
- sudo bash /etc/yunohost/apps/hotspot/scripts/remove &> /dev/null
- bash ./install "${domain}" "${path}" "${wifi_ssid}" "${wifi_passphrase}" "${firmware_nonfree}"
- gitcommit=$(ynh_setting hotspot gitcommit)
- sudo cp -a "${tmpdir}/settings.yml" /etc/yunohost/apps/hotspot/
- sudo rm -r "${tmpdir}/"
- sudo yunohost app setting hotspot gitcommit -v "${gitcommit}"
- # Changes
- if [ "$(ynh_setting hotspot ip6_firewall)" == '' ]; then
- multissid=$(ynh_setting hotspot multissid)
- ip6_firewall=$(printf '1|%.0s' $(seq "${multissid}"))
- ip6_firewall=$(echo "${ip6_firewall%?}")
- sudo yunohost app setting hotspot ip6_firewall -v "${ip6_firewall}"
- fi
- sudo systemctl start ynh-hotspot
- exit 0
|