mirror of
				https://github.com/YunoHost-Apps/send_ynh.git
				synced 2025-11-03 23:35:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			717 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			717 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
 | 
						|
source /usr/share/yunohost/helpers
 | 
						|
 | 
						|
ynh_print_info "Declaring files to be backed up..."
 | 
						|
 | 
						|
#=================================================
 | 
						|
# BACKUP THE APP MAIN DIR
 | 
						|
#=================================================
 | 
						|
 | 
						|
ynh_backup "$install_dir"
 | 
						|
 | 
						|
#=================================================
 | 
						|
# SYSTEM CONFIGURATION
 | 
						|
#=================================================
 | 
						|
 | 
						|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
 | 
						|
 | 
						|
ynh_backup "/etc/systemd/system/$app.service"
 | 
						|
 | 
						|
#=================================================
 | 
						|
# END OF SCRIPT
 | 
						|
#=================================================
 | 
						|
 | 
						|
ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
 |