mirror of
				https://github.com/YunoHost-Apps/send_ynh.git
				synced 2025-11-03 23:35:35 +01:00 
			
		
		
		
	Fix
This commit is contained in:
		@@ -19,7 +19,7 @@
 | 
				
			|||||||
        "name": "eric_G"
 | 
					        "name": "eric_G"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "requirements": {
 | 
					    "requirements": {
 | 
				
			||||||
        "yunohost": ">= 4.2.4"
 | 
					        "yunohost": ">= 4.3.0"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "multi_instance": true,
 | 
					    "multi_instance": true,
 | 
				
			||||||
    "services": [
 | 
					    "services": [
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,7 +4,7 @@
 | 
				
			|||||||
# COMMON VARIABLES
 | 
					# COMMON VARIABLES
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 | 
					
 | 
				
			||||||
nodejs_version=15
 | 
					nodejs_version=16
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# PERSONAL HELPERS
 | 
					# PERSONAL HELPERS
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -47,7 +47,11 @@ ynh_backup --src_path="$final_path"
 | 
				
			|||||||
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
 | 
					ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# SPECIFIC BACKUP
 | 
					# BACKUP LOGROTATE
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ynh_backup --src_path="/etc/logrotate.d/$app"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# BACKUP SYSTEMD
 | 
					# BACKUP SYSTEMD
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -142,6 +142,14 @@ ynh_script_progression --message="Configuring a systemd service..." --weight=1
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
ynh_add_systemd_config
 | 
					ynh_add_systemd_config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					# SETUP LOGROTATE
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					ynh_script_progression --message="Configuring log rotation..." --weight=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Use logrotate to manage application logfile(s)
 | 
				
			||||||
 | 
					ynh_use_logrotate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# INTEGRATE SERVICE IN YUNOHOST
 | 
					# INTEGRATE SERVICE IN YUNOHOST
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -41,6 +41,14 @@ ynh_script_progression --message="Stopping and removing the systemd service..."
 | 
				
			|||||||
# Remove the dedicated systemd config
 | 
					# Remove the dedicated systemd config
 | 
				
			||||||
ynh_remove_systemd_config
 | 
					ynh_remove_systemd_config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					# REMOVE LOGROTATE CONFIGURATION
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					ynh_script_progression --message="Removing logrotate configuration..." --weight=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Remove the app-specific logrotate config
 | 
				
			||||||
 | 
					ynh_remove_logrotate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# REMOVE DEPENDENCIES
 | 
					# REMOVE DEPENDENCIES
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -85,6 +85,13 @@ ynh_script_progression --message="Restoring the systemd configuration..." --weig
 | 
				
			|||||||
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
 | 
					ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
 | 
				
			||||||
systemctl enable $app.service --quiet
 | 
					systemctl enable $app.service --quiet
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					# RESTORE THE LOGROTATE CONFIGURATION
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ynh_restore_file --origin_path="/etc/logrotate.d/$app"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# INTEGRATE SERVICE IN YUNOHOST
 | 
					# INTEGRATE SERVICE IN YUNOHOST
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,6 +131,14 @@ ynh_script_progression --message="Configuring a systemd service..." --weight=2
 | 
				
			|||||||
# Create a dedicated systemd config
 | 
					# Create a dedicated systemd config
 | 
				
			||||||
ynh_add_systemd_config
 | 
					ynh_add_systemd_config
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					# SETUP LOGROTATE
 | 
				
			||||||
 | 
					#=================================================
 | 
				
			||||||
 | 
					ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Use logrotate to manage app-specific logfile(s)
 | 
				
			||||||
 | 
					ynh_use_logrotate --non-append
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
# INTEGRATE SERVICE IN YUNOHOST
 | 
					# INTEGRATE SERVICE IN YUNOHOST
 | 
				
			||||||
#=================================================
 | 
					#=================================================
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user