mirror of
				https://framagit.org/YunoHost-Apps/gitea_ynh.git
				synced 2025-10-30 21:35:36 +01:00 
			
		
		
		
	 60cb5e5ae4
			
		
	
	60cb5e5ae4
	
	
	
		
			
			* Move app install dir from /opt to /var/www * Revamp the way binaries are downloaded thanks to manifestv2 (no need to check for arch, etc) * Remove custom helpers (exec_as, ynh_handle_app_migration) * Rename LFS_KEY as LFS_JWT_SECRET and KEY as SECRET_KEY as named in app.ini * Add JWT_SECRET for oauth and INTERNAL_TOKEN in app.ini * update upstream sample app.ini URL * Disable actions for now. * Automatically add ssh permissions to the system user * Remove support for upgrade before 1.6.4. Edit test_upgrade_from accordingly.
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| #=================================================
 | |
| # GENERIC START
 | |
| #=================================================
 | |
| 
 | |
| # Load common variables and helpers
 | |
| source ../settings/scripts/_common.sh
 | |
| source /usr/share/yunohost/helpers
 | |
| 
 | |
| 
 | |
| if [[ ! "$(systemctl status $app.service)" =~ "Active: inactive (dead)" ]]; then
 | |
|     ynh_print_warn --message="It's hightly recommended to make your backup when the service is stopped. Please stop $app service and with this command before to run the backup 'systemctl stop $app.service'"
 | |
| fi
 | |
| 
 | |
| #=================================================
 | |
| # DECLARE DATA AND CONF FILES TO BACKUP
 | |
| #=================================================
 | |
| ynh_print_info --message="Declaring files to be backed up..."
 | |
| 
 | |
| # Copy the app source files
 | |
| ynh_backup --src_path "$install_dir"
 | |
| 
 | |
| # Copy the data files
 | |
| ynh_backup --src_path "$data_dir" --is_big=1
 | |
| 
 | |
| # Copy the conf files
 | |
| ynh_backup --src_path "/etc/nginx/conf.d/$domain.d/$app.conf"
 | |
| 
 | |
| ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
 | |
| ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
 | |
| 
 | |
| ynh_backup --src_path="/etc/logrotate.d/$app"
 | |
| 
 | |
| ynh_backup --src_path "/etc/systemd/system/$app.service"
 | |
| 
 | |
| # Backup logs
 | |
| ynh_backup --src_path "/var/log/$app"
 | |
| 
 | |
| # Dump the database
 | |
| ynh_print_info --message="Backing up the MySQL database"
 | |
| ynh_mysql_dump_db "$db_name" > ./db.sql
 | |
| 
 | |
| #=================================================
 | |
| # END OF SCRIPT
 | |
| #=================================================
 | |
| 
 | |
| ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
 |