1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hotspot_ynh.git synced 2024-09-03 19:25:53 +02:00
hotspot_ynh/scripts/restore

127 lines
4.5 KiB
Text
Raw Normal View History

2015-07-25 16:33:38 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-05-15 20:52:43 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-02-23 02:05:40 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2021-05-15 20:52:43 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
2019-02-23 02:05:40 +01:00
# LOAD SETTINGS
#=================================================
2021-05-15 20:52:43 +02:00
ynh_script_progression --message="Loading installation settings..."
2019-02-23 02:05:40 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-05-31 05:33:17 +02:00
firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
service_name=$(ynh_app_setting_get --app=$app --key=service_name)
2019-02-23 02:05:40 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-05-31 05:33:17 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-02-23 02:05:40 +01:00
# Meh idk where to put this ... On RPi, by default wlan is blocked
if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
then
ynh_print_info "Unblocking wlan interface..."
/usr/sbin/rfkill unblock wlan
fi
2019-02-23 02:05:40 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2021-05-15 20:52:43 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
2021-06-07 18:32:16 +02:00
2019-02-23 02:05:40 +01:00
if [[ $firmware_nonfree -eq 1 ]]; then
2021-05-15 20:52:43 +02:00
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"
2019-02-23 02:05:40 +01:00
else
2021-05-15 20:52:43 +02:00
pkg_dependencies="$pkg_dependencies $free_firmware_packages"
2019-02-23 02:05:40 +01:00
fi
2023-08-21 10:52:04 +02:00
ynh_restore_file --origin_path="/etc/hostapd/hostapd.conf"
2020-05-31 05:33:17 +02:00
ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
2019-02-23 02:05:40 +01:00
2020-05-31 05:33:17 +02:00
ynh_restore_file --origin_path="/usr/local/bin/$service_name"
2019-02-23 02:05:40 +01:00
2023-08-16 20:39:02 +02:00
ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/90-hotspot"
ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/90-hotspot"
2020-05-31 05:33:17 +02:00
ynh_restore_file --origin_path="/etc/init.d/hostapd"
2019-02-23 02:05:40 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-05-31 05:33:17 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-02-23 02:05:40 +01:00
# Define and install dependencies
2021-05-15 20:52:43 +02:00
ynh_install_app_dependencies $pkg_dependencies
2019-02-23 02:05:40 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-05-31 05:33:17 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-02-23 02:05:40 +01:00
2020-05-31 05:33:17 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
systemctl enable $service_name.service --quiet
2019-02-23 02:05:40 +01:00
#=================================================
2020-05-31 05:33:17 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2019-02-23 02:05:40 +01:00
#=================================================
2020-05-31 05:33:17 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2019-02-23 02:05:40 +01:00
yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
2020-05-31 05:33:17 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
hot_reload_usb_wifi_cards
2021-10-13 01:22:32 +02:00
wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
2020-05-31 05:33:17 +02:00
if [[ -z $wifi_device ]]; then
2021-05-15 20:52:43 +02:00
ynh_app_setting_set --app=$app --key=service_enabled --value=0
2020-05-31 05:33:17 +02:00
else
2021-05-15 20:52:43 +02:00
ynh_app_setting_set --app=$app --key=service_enabled --value=1
2020-05-31 05:33:17 +02:00
fi
# Start a systemd service if device is present
if [[ $wifi_device == "" ]]; then
2021-05-15 20:52:43 +02:00
echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
2020-05-31 05:33:17 +02:00
else
2021-05-15 20:52:43 +02:00
ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
2020-05-31 05:33:17 +02:00
fi
2019-02-23 02:05:40 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2015-07-25 16:33:38 +02:00
2020-05-31 05:33:17 +02:00
ynh_script_progression --message="Restoration completed for $app"