123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- #!/bin/bash
- #=================================================
- # GENERIC START
- #=================================================
- # IMPORT GENERIC HELPERS
- #=================================================
- source _common.sh
- source /usr/share/yunohost/helpers
- #=================================================
- # LOAD SETTINGS
- #=================================================
- ynh_script_progression --message="Loading installation settings..."
- app=$YNH_APP_INSTANCE_NAME
- firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
- service_name=$(ynh_app_setting_get --app=$app --key=service_name)
- #=================================================
- # CHECK VERSION
- #=================================================
- ynh_script_progression --message="Checking version..."
- upgrade_type=$(ynh_check_app_version_changed)
- #=================================================
- # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
- #=================================================
- ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
- # Backup the current version of the app
- ynh_backup_before_upgrade
- ynh_clean_setup () {
- # Restore it if the upgrade fails
- ynh_restore_upgradebackup
- }
- # Exit if an error occurs during the execution of the script
- ynh_abort_if_errors
- #=================================================
- # STANDARD UPGRADE STEPS
- #=================================================
- # STOP SYSTEMD SERVICE
- #=================================================
- ynh_script_progression --message="Stopping the hotspot service ... (this may take some time)"
- ynh_systemd_action --service_name=$service_name --action="stop" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
- #=================================================
- # ENSURE DOWNWARD COMPATIBILITY
- #=================================================
- ynh_script_progression --message="Ensuring downward compatibility..."
- if [ -d /var/www/wifiadmin/ ]; then
- ynh_secure_remove /var/www/wifiadmin/
- fi
- if [ $firmware_nonfree = "yes" ]; then
- firmware_nonfree=1
- ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
- elif [ $firmware_nonfree = "no" ]; then
- firmware_nonfree=0
- ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
- fi
- if [ -z $service_name ]; then
- service_name="ynh-$app"
- ynh_app_setting_set --app=$app --key=service_name --value=$service_name
- fi
- multissid=$(ynh_app_setting_get --app=$app --key=multissid)
- if [[ -n ${multissid} ]] && [[ ${multissid} -gt 1 ]]; then
- wifi_ssid=$(ynh_app_setting_get --app=$app --key=wifi_ssid | cut -d'|' -f 1)
- wifi_secure=$(ynh_app_setting_get --app=$app --key=wifi_secure | cut -d'|' -f 1)
- wifi_passphrase=$(ynh_app_setting_get --app=$app --key=wifi_passphrase | cut -d'|' -f 1)
- ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix | cut -d'|' -f 1)
- ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net | cut -d'|' -f 1)
- ip6_firewall=$(ynh_app_setting_get --app=$app --key=ip6_firewall | cut -d'|' -f 1)
- dns=$(ynh_app_setting_get --app=$app --key=dns | cut -d'|' -f 1)
- ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
- ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
- ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
- ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
- ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
- ynh_app_setting_set --app=$app --key=ip6_firewall --value="${ip6_firewall}"
- else
- dns=$(ynh_app_setting_get --app=$app --key=dns)
- fi
- if [[ -n "${dns}" ]]; then
- ip6_dns=""
- ip4_dns=""
- for ip in $(echo "${dns}" | tr ',' ' '); do
- if [[ "$ip" == *":"* ]]; then
- ip6_dns+="[$ip],"
- else
- ip4_dns+="$ip,"
- fi
- done
- # Remove trailing ,
- ip6_dns="${ip6_dns%%,}"
- ip4_dns="${ip4_dns%%,}"
- if [[ -z "$(ynh_app_setting_get --app=$app --key=ip6_dns)" ]]; then
- ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
- fi
- if [[ -z "$(ynh_app_setting_get --app=$app --key=ip4_dns)" ]]; then
- ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
- fi
- ynh_app_setting_delete $app dns
- fi
- if [[ -n ${multissid} ]]; then
- ynh_app_setting_delete --app=$app --key=multissid
- fi
- ynh_secure_remove --file="/etc/hostapd/hostapd.conf"
- ynh_secure_remove --file="/etc/hostapd/hostapd.base.conf"
- ynh_secure_remove --file="/etc/hostapd/hostapd.accesspoint.conf"
- ynh_secure_remove --file="/etc/dnsmasq.dhcpd/"
- # Old stuff prior to 2.x
- ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
- if [ "$ip6_net" == "none" ]
- then
- ip6_net=""
- ynh_app_setting_set --app=$app --key=ip6_net --value="$ip6_net"
- fi
- if [ -f /etc/nginx/conf.d/*.d/$app.conf ]; then
- ynh_secure_remove /etc/nginx/conf.d/*.d/$app.conf
- ynh_systemd_action --service_name=nginx --action=reload
- fi
- for php_path in $(ls /etc/php/*/fpm/pool.d/$app.conf 2> /dev/null); do
- ynh_secure_remove $php_path
- done
- if [ -d /var/www/$app ]; then
- ynh_secure_remove /var/www/$app
- fi
- [ -z "$(ynh_app_setting_get $app domain)" ] || ynh_app_setting_delete $app domain
- [ -z "$(ynh_app_setting_get $app path)" ] || ynh_app_setting_delete $app path
- [ -z "$(ynh_app_setting_get $app final_path)" ] || ynh_app_setting_delete $app final_path
- if [ -e "/etc/sudoers.d/${app}_ynh" ]; then
- ynh_secure_remove "/etc/sudoers.d/${app}_ynh"
- fi
- #=================================================
- # CREATE DEDICATED USER
- #=================================================
- ynh_script_progression --message="Making sure dedicated system user exists..."
- # Create a dedicated user (if not existing)
- ynh_system_user_create --username=$app
- #=================================================
- # UPGRADE DEPENDENCIES
- #=================================================
- ynh_script_progression --message="Upgrading dependencies..."
- if [[ $firmware_nonfree -eq 1 ]]; then
- check_armbian_nonfree_conflict
- ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
- else
- pkg_dependencies="$pkg_dependencies $free_firmware_packages"
- fi
- ynh_install_app_dependencies $pkg_dependencies
- #=================================================
- # SPECIFIC UPGRADE
- #=================================================
- # COPY CONFIGS
- #=================================================
- ynh_script_progression --message="Copying configuration..."
- mkdir -pm 0755 /etc/hostapd/$app/
- chown root: /etc/hostapd/$app/
- mkdir -pm 0755 /etc/dnsmasq.$app/
- chown root: /etc/dnsmasq.$app/
- install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl /etc/hostapd/$app/hostapd.conf.tpl
- install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.$app/dhcpdv6.conf.tpl
- install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.$app/dhcpdv4.conf.tpl
- # Copy init script
- ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
- # Copy openvpn scripts
- mkdir -pm 0755 /etc/openvpn/scripts
- mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
- mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
- ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
- ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
- chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
- chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
- #=================================================
- # SETUP SYSTEMD
- #=================================================
- ynh_script_progression --message="Upgrading systemd configuration..."
- # Create a dedicated systemd config
- ynh_add_systemd_config --service=$service_name
- # Create custom systemd config for hostapd to handle multiple wifi devices
- ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
- #=================================================
- # GENERIC FINALIZATION
- #=================================================
- # INTEGRATE SERVICE IN YUNOHOST
- #=================================================
- ynh_script_progression --message="Integrating service in YunoHost..."
- yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app"
- #=================================================
- # START SYSTEMD SERVICE
- #=================================================
- ynh_script_progression --message="Starting the hotspot service..."
- hot_reload_usb_wifi_cards
- wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
- if [[ -z $wifi_device ]]; then
- ynh_app_setting_set --app=$app --key=service_enabled --value=0
- wifi_device=""
- else
- ynh_app_setting_set --app=$app --key=service_enabled --value=1
- fi
- # Start a systemd service if device is present
- if [[ $wifi_device == "" ]]; then
- echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
- else
- ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
- fi
- #=================================================
- # END OF SCRIPT
- #=================================================
- ynh_script_progression --message="Upgrade of $app completed"
|