upgrade 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC STARTING
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # LOAD SETTINGS
  11. #=================================================
  12. ynh_print_info "Loading installation settings..."
  13. app=$YNH_APP_INSTANCE_NAME
  14. domain=$(ynh_app_setting_get $app domain)
  15. final_path=$(ynh_app_setting_get $app final_path)
  16. dns_method=$(ynh_app_setting_get $app dns_method)
  17. nameservers=$(ynh_app_setting_get $app nameservers)
  18. #=================================================
  19. # SPECIAL UPGRADE FOR VERSIONS < 1.2.0
  20. #=================================================
  21. # Removing configuration files with naming that occured in versions < 1.2.0 ("vpnadmin" instead off "$app")
  22. rm -f /etc/nginx/conf.d/${domain}.d/vpnadmin.conf 2>/dev/null
  23. rm -f /etc/php/*/fpm/pool.d/vpnadmin.conf 2>/dev/null
  24. if [ -d /var/www/vpnadmin ]; then
  25. ynh_secure_remove /var/www/vpnadmin
  26. fi
  27. if [ -d /var/www/${app} ]; then
  28. ynh_secure_remove /var/www/${app}
  29. fi
  30. #=================================================
  31. # SPECIAL UPGRADE FOR VERSIONS < 2.0
  32. #=================================================
  33. if [ -z "$dns_method" ]; then
  34. ynh_app_setting_set --app=$app --key=dns_method --value=custom
  35. fi
  36. if [ -z "$nameservers" ]; then
  37. nameservers="$(grep -o -P '\s*nameserver\s+\K[abcdefabcdef\d.:]+' /etc/resolv.dnsmasq.conf | sort | uniq | paste -s -d, -)"
  38. ynh_app_setting_set --app=$app --key=nameservers --value="$nameservers"
  39. fi
  40. ## Versions known to have a buggy backup script
  41. #buggy_versions="1.0.0 1.0.1 1.1.0"
  42. #curr_version=$(read_manifest version)
  43. #if echo $buggy_versions | grep -w $curr_version > /dev/null; then
  44. # echo "Your current version of ${app} is very old: ${curr_version}. Please ignore the next warning." >&2
  45. #fi
  46. #
  47. ##=================================================
  48. ## BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  49. ##=================================================
  50. #
  51. #ynh_backup_before_upgrade
  52. #ynh_clean_setup () {
  53. # ynh_restore_upgradebackup
  54. #}
  55. ## Exit if an error occurs during the execution of the script
  56. ynh_abort_if_errors
  57. #=================================================
  58. # DO UPGRADE
  59. #=================================================
  60. # INSTALL DEPENDENCIES
  61. #=================================================
  62. ynh_print_info "Installing dependencies..."
  63. ynh_install_app_dependencies "$pkg_dependencies"
  64. #=================================================
  65. # DEPLOY FILES FROM PACKAGE
  66. #=================================================
  67. # Keep a copy of existing config files before overwriting them
  68. tmpdir=$(mktemp -d /tmp/vpnclient-upgrade-XXX)
  69. cp -r /etc/openvpn/client* ${tmpdir}
  70. # Deploy files from package
  71. vpnclient_deploy_files_and_services
  72. # Restore previously existing config files
  73. cp -r ${tmpdir}/client* /etc/openvpn/
  74. ynh_secure_remove ${tmpdir}
  75. #=================================================
  76. # SERVICE INTEGRATION IN YUNOHOST
  77. #=================================================
  78. ### Make sure that the yunohost services have a description and need-lock enabled
  79. # main service
  80. yunohost service add $service_name --description "Tunnels the internet traffic through a VPN" --need_lock --test_status="systemctl is-active openvpn@client.service" --log "/var/log/ynh-vpnclient.log"
  81. # checker service (this service was previously integrated in yunohost but we do not do this anymore)
  82. if ynh_exec_warn_less yunohost service status $service_checker_name >/dev/null
  83. then
  84. yunohost service remove $service_checker_name
  85. fi
  86. #=================================================
  87. # RESTART RELEVANT SERVICES
  88. #=================================================
  89. ynh_print_info "Restart services..."
  90. # this is meant to propagate the new files and configs
  91. systemctl -q is-active $service_name && yunohost service restart $service_name
  92. # Not sure if these are really necessary ...
  93. systemctl -q is-active $service_checker_name && systemctl restart $service_checker_name
  94. systemctl -q is-active $service_checker_name.timer && systemctl restart $service_checker_name.timer
  95. #=================================================
  96. # END OF SCRIPT
  97. #=================================================
  98. ynh_print_info "Upgrade of $app completed"