mirror of
				https://github.com/YunoHost-Apps/send_ynh.git
				synced 2025-11-03 23:35:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source ../settings/scripts/_common.sh
 | 
						|
source /usr/share/yunohost/helpers
 | 
						|
 | 
						|
#=================================================
 | 
						|
# RESTORE THE APP MAIN DIR
 | 
						|
#=================================================
 | 
						|
ynh_script_progression "Restoring the app main directory..."
 | 
						|
 | 
						|
ynh_restore "$install_dir"
 | 
						|
 | 
						|
chmod +x "$install_dir/server/bin/prod.js"
 | 
						|
 | 
						|
#=================================================
 | 
						|
# REINSTALL DEPENDENCIES
 | 
						|
#=================================================
 | 
						|
ynh_script_progression "Reinstalling dependencies..."
 | 
						|
 | 
						|
ynh_nodejs_install
 | 
						|
 | 
						|
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
 | 
						|
 | 
						|
ynh_restore "/etc/systemd/system/$app.service"
 | 
						|
systemctl enable "$app.service" --quiet
 | 
						|
 | 
						|
yunohost service add "$app" --description="Simple, private file sharing" --log="/var/log/$app/$app.log"
 | 
						|
 | 
						|
#=================================================
 | 
						|
# START SYSTEMD SERVICE
 | 
						|
#=================================================
 | 
						|
ynh_script_progression "Starting $app's systemd service..."
 | 
						|
 | 
						|
ynh_systemctl --service="$app" --action="start" --log_path="systemd"
 | 
						|
 | 
						|
ynh_systemctl --service=nginx --action=reload
 | 
						|
 | 
						|
#=================================================
 | 
						|
# END OF SCRIPT
 | 
						|
#=================================================
 | 
						|
 | 
						|
ynh_script_progression "Restoration completed for $app"
 |