backup 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. ynh_clean_setup () {
  14. ynh_clean_check_starting
  15. }
  16. # Exit if an error occurs during the execution of the script
  17. ynh_abort_if_errors
  18. #=================================================
  19. # LOAD SETTINGS
  20. #=================================================
  21. ynh_print_info --message="Loading installation settings..."
  22. app=$YNH_APP_INSTANCE_NAME
  23. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  24. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  25. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  26. #=================================================
  27. # DECLARE DATA AND CONF FILES TO BACKUP
  28. #=================================================
  29. ynh_print_info --message="Declaring files to be backed up..."
  30. #=================================================
  31. # BACKUP THE APP MAIN DIR
  32. #=================================================
  33. ynh_backup --src_path="/etc/hostapd/$app/hostapd.conf.tpl"
  34. ynh_backup --src_path="/etc/hostapd/$app/hostapd.conf" --not_mandatory
  35. ynh_backup --src_path="/etc/dnsmasq.$app/dnsmasq.conf.tpl"
  36. ynh_backup --src_path="/etc/dnsmasq.d/$app.conf" --not_mandatory
  37. ynh_backup --src_path="/etc/dnsmasq.$app/dhcpdv6.conf.tpl"
  38. ynh_backup --src_path="/etc/dnsmasq.$app/dhcpdv6.conf" --not_mandatory
  39. ynh_backup --src_path="/etc/dnsmasq.$app/dhcpdv4.conf.tpl"
  40. ynh_backup --src_path="/etc/dnsmasq.$app/dhcpdv4.conf" --not_mandatory
  41. ynh_backup --src_path="/usr/local/bin/$service_name"
  42. ynh_backup --src_path="/etc/openvpn/scripts/route-up.d/90-$service_name"
  43. ynh_backup --src_path="/etc/openvpn/scripts/route-down.d/90-$service_name"
  44. #=================================================
  45. # SPECIFIC BACKUP
  46. #=================================================
  47. # BACKUP SYSTEMD
  48. #=================================================
  49. ynh_backup --src_path="/etc/systemd/system/$service_name.service"
  50. ynh_backup --src_path="/etc/systemd/system/hostapd@$app.service"
  51. #=================================================
  52. # END OF SCRIPT
  53. #=================================================
  54. ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."