backup 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. service_name=$(ynh_app_setting_get $app service_name)
  23. #=================================================
  24. # STANDARD BACKUP STEPS
  25. #=================================================
  26. # BACKUP THE APP MAIN DIR
  27. #=================================================
  28. ynh_print_info "Backing up the main app directory..."
  29. ynh_backup "$final_path"
  30. if [[ $firmware_nonfree -eq 1 ]]; then
  31. ynh_backup "/lib/firmware/htc_7010.fw"
  32. ynh_backup "/lib/firmware/htc_9271.fw"
  33. fi
  34. ynh_backup "/etc/sudoers.d/${app}_ynh"
  35. ynh_backup "/usr/local/bin/iw_multissid"
  36. ynh_backup "/usr/local/bin/iw_devices"
  37. ynh_backup "/usr/local/bin/iw_ssids"
  38. ynh_backup "/usr/local/bin/ipv6_expanded"
  39. ynh_backup "/usr/local/bin/ipv6_compressed"
  40. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  41. do
  42. ynh_backup "$FILE"
  43. done
  44. ynh_backup "/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  45. ynh_backup "/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  46. ynh_backup "/usr/local/bin/$service_name"
  47. ynh_backup "/etc/init.d/hostapd"
  48. #=================================================
  49. # BACKUP THE NGINX CONFIGURATION
  50. #=================================================
  51. ynh_print_info "Backing up nginx web server configuration..."
  52. ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
  53. #=================================================
  54. # BACKUP THE PHP-FPM CONFIGURATION
  55. #=================================================
  56. ynh_print_info "Backing up php-fpm configuration..."
  57. ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
  58. #=================================================
  59. # SPECIFIC BACKUP
  60. #=================================================
  61. # BACKUP SYSTEMD
  62. #=================================================
  63. ynh_print_info "Backing up systemd configuration..."
  64. ynh_backup "/etc/systemd/system/$app.service"
  65. #=================================================
  66. # END OF SCRIPT
  67. #=================================================
  68. ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."