Browse Source

Missing stuff

yalh76 3 years ago
parent
commit
2534da618e
3 changed files with 33 additions and 29 deletions
  1. 1 3
      scripts/install
  2. 3 3
      scripts/restore
  3. 29 23
      scripts/upgrade

+ 1 - 3
scripts/install

@@ -218,12 +218,10 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path
 mkdir -pm 0755 $final_path
 cp -a ../sources/* ${final_path}/
 
-
 chmod -R 0644 ${final_path}/*
 chmod 750 "$final_path"
 chmod -R o-rwx "$final_path"
-chown -R $app:$app ${final_path}
-find ${final_path}/ -type d -exec chmod +x {} \;
+chown -R $app:$app "$final_path"
 
 #=================================================
 # NGINX CONFIGURATION

+ 3 - 3
scripts/restore

@@ -100,10 +100,10 @@ ynh_restore_file --origin_path="/etc/init.d/hostapd"
 ynh_script_progression --message="Restoring user rights..."
 
 # Restore permissions on app files
-chown -R $app:$app ${final_path}/
 chmod -R 0644 ${final_path}/*
-find ${final_path}/ -type d -exec chmod +x {} \;
-chmod o-rwx ${final_path}
+chmod 750 "$final_path"
+chmod -R o-rwx "$final_path"
+chown -R $app:$app "$final_path"
 
 #=================================================
 # RESTORE THE PHP-FPM CONFIGURATION

+ 29 - 23
scripts/upgrade

@@ -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
 #=================================================