backup 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source ../settings/scripts/_common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. # Exit if an error occurs during the execution of the script
  13. ynh_abort_if_errors
  14. #=================================================
  15. # LOAD SETTINGS
  16. #=================================================
  17. ynh_print_info "Loading installation settings..."
  18. app=$YNH_APP_INSTANCE_NAME
  19. final_path=$(ynh_app_setting_get $app final_path)
  20. domain=$(ynh_app_setting_get $app domain)
  21. firmware_nonfree=$(ynh_app_setting_get $app firmware_nonfree)
  22. #=================================================
  23. # STANDARD BACKUP STEPS
  24. #=================================================
  25. # BACKUP THE APP MAIN DIR
  26. #=================================================
  27. ynh_print_info "Backing up the main app directory..."
  28. ynh_backup "$final_path"
  29. if [[ $firmware_nonfree -eq 1 ]]; then
  30. ynh_backup "/lib/firmware/htc_7010.fw"
  31. ynh_backup "/lib/firmware/htc_9271.fw"
  32. fi
  33. ynh_backup "/etc/sudoers.d/${app}_ynh"
  34. ynh_backup "/usr/local/bin/iw_multissid"
  35. ynh_backup "/usr/local/bin/iw_devices"
  36. ynh_backup "/usr/local/bin/iw_ssids"
  37. ynh_backup "/usr/local/bin/ipv6_expanded"
  38. ynh_backup "/usr/local/bin/ipv6_compressed"
  39. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  40. do
  41. ynh_backup "$FILE"
  42. done
  43. ynh_backup "/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  44. ynh_backup "/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  45. ynh_backup "/usr/local/bin/$service_name"
  46. ynh_backup "/etc/init.d/hostapd"
  47. #=================================================
  48. # BACKUP THE NGINX CONFIGURATION
  49. #=================================================
  50. ynh_print_info "Backing up nginx web server configuration..."
  51. ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
  52. #=================================================
  53. # BACKUP THE PHP-FPM CONFIGURATION
  54. #=================================================
  55. ynh_print_info "Backing up php-fpm configuration..."
  56. ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
  57. #=================================================
  58. # SPECIFIC BACKUP
  59. #=================================================
  60. # BACKUP SYSTEMD
  61. #=================================================
  62. ynh_print_info "Backing up systemd configuration..."
  63. ynh_backup "/etc/systemd/system/$app.service"
  64. #=================================================
  65. # END OF SCRIPT
  66. #=================================================
  67. ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."