backup 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. #Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
  8. source ../settings/scripts/_common.sh
  9. source /usr/share/yunohost/helpers
  10. #=================================================
  11. # MANAGE SCRIPT FAILURE
  12. #=================================================
  13. # Exit if an error occurs during the execution of the script
  14. ynh_abort_if_errors
  15. #=================================================
  16. # LOAD SETTINGS
  17. #=================================================
  18. ynh_print_info --message="Loading installation settings..."
  19. app=$YNH_APP_INSTANCE_NAME
  20. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  21. domain=$(ynh_app_setting_get --app=$app --key=domain)
  22. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  23. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  24. phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
  25. #=================================================
  26. # DECLARE DATA AND CONF FILES TO BACKUP
  27. #=================================================
  28. ynh_print_info --message="Declaring files to be backed up..."
  29. #=================================================
  30. # BACKUP THE APP MAIN DIR
  31. #=================================================
  32. ynh_backup --src_path="$final_path"
  33. ynh_backup --src_path="/etc/sudoers.d/${app}_ynh"
  34. ynh_backup --src_path="/usr/local/bin/iw_multissid"
  35. ynh_backup --src_path="/usr/local/bin/iw_devices"
  36. ynh_backup --src_path="/usr/local/bin/iw_ssids"
  37. ynh_backup --src_path="/usr/local/bin/ipv6_expanded"
  38. ynh_backup --src_path="/usr/local/bin/ipv6_compressed"
  39. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  40. do
  41. ynh_backup --src_path="$FILE"
  42. done
  43. ynh_backup --src_path="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  44. ynh_backup --src_path="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  45. ynh_backup --src_path="/usr/local/bin/$service_name"
  46. ynh_backup --src_path="/etc/init.d/hostapd"
  47. #=================================================
  48. # BACKUP THE NGINX CONFIGURATION
  49. #=================================================
  50. ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
  51. #=================================================
  52. # BACKUP THE PHP-FPM CONFIGURATION
  53. #=================================================
  54. ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
  55. #=================================================
  56. # SPECIFIC BACKUP
  57. #=================================================
  58. # BACKUP SYSTEMD
  59. #=================================================
  60. ynh_backup --src_path="/etc/systemd/system/$service_name.service"
  61. #=================================================
  62. # END OF SCRIPT
  63. #=================================================
  64. ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."