|
@@ -31,6 +31,29 @@ 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 a systemd service..."
|
|
|
+
|
|
|
+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..."
|
|
@@ -67,29 +90,6 @@ if [ -z $service_name ]; then
|
|
|
fi
|
|
|
|
|
|
#=================================================
|
|
|
-# 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 a systemd service..."
|
|
|
-
|
|
|
-ynh_systemd_action --service_name=$service_name --action="stop" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
|
|
|
-
|
|
|
-#=================================================
|
|
|
# CREATE DEDICATED USER
|
|
|
#=================================================
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
|
@@ -109,6 +109,12 @@ then
|
|
|
cp -a ../sources/* ${final_path}/
|
|
|
fi
|
|
|
|
|
|
+# Restore permissions on app files
|
|
|
+chmod -R 0644 ${final_path}/*
|
|
|
+chmod 750 "$final_path"
|
|
|
+chmod -R o-rwx "$final_path"
|
|
|
+chown -R $app:$app "$final_path"
|
|
|
+
|
|
|
#=================================================
|
|
|
# NGINX CONFIGURATION
|
|
|
#=================================================
|