upgrade 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # LOAD SETTINGS
  11. #=================================================
  12. ynh_script_progression --message="Loading installation settings..."
  13. app=$YNH_APP_INSTANCE_NAME
  14. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  15. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  16. #=================================================
  17. # CHECK VERSION
  18. #=================================================
  19. ynh_script_progression --message="Checking version..."
  20. upgrade_type=$(ynh_check_app_version_changed)
  21. #=================================================
  22. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  23. #=================================================
  24. ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
  25. # Backup the current version of the app
  26. ynh_backup_before_upgrade
  27. ynh_clean_setup () {
  28. # Restore it if the upgrade fails
  29. ynh_restore_upgradebackup
  30. }
  31. # Exit if an error occurs during the execution of the script
  32. ynh_abort_if_errors
  33. #=================================================
  34. # STANDARD UPGRADE STEPS
  35. #=================================================
  36. # STOP SYSTEMD SERVICE
  37. #=================================================
  38. ynh_script_progression --message="Stopping a systemd service..."
  39. ynh_systemd_action --service_name=$service_name --action="stop" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  40. #=================================================
  41. # ENSURE DOWNWARD COMPATIBILITY
  42. #=================================================
  43. ynh_script_progression --message="Ensuring downward compatibility..."
  44. if [ -d /etc/nginx/conf.d/*.d/$app.conf ]; then
  45. ynh_secure_remove /etc/nginx/conf.d/*.d/$app.conf
  46. fi
  47. if [ -d /etc/php/*/fpm/pool.d/$app.conf ]; then
  48. ynh_secure_remove /etc/php/*/fpm/pool.d/$app.conf
  49. fi
  50. if [ -d /var/www/$app ]; then
  51. ynh_secure_remove /var/www/$app
  52. fi
  53. if [ -d /var/www/wifiadmin/ ]; then
  54. ynh_secure_remove /var/www/wifiadmin/
  55. fi
  56. if [ $firmware_nonfree = "yes" ]; then
  57. firmware_nonfree=1
  58. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  59. elif [ $firmware_nonfree = "no" ]; then
  60. firmware_nonfree=0
  61. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  62. fi
  63. if [ -z $service_name ]; then
  64. service_name="ynh-hotspot"
  65. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  66. fi
  67. #=================================================
  68. # CREATE DEDICATED USER
  69. #=================================================
  70. ynh_script_progression --message="Making sure dedicated system user exists..."
  71. # Create a dedicated user (if not existing)
  72. ynh_system_user_create --username=$app
  73. #=================================================
  74. # UPGRADE DEPENDENCIES
  75. #=================================================
  76. ynh_script_progression --message="Upgrading dependencies..."
  77. if [[ $firmware_nonfree -eq 1 ]]; then
  78. check_armbian_nonfree_conflict
  79. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  80. else
  81. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  82. fi
  83. ynh_install_app_dependencies $pkg_dependencies
  84. #=================================================
  85. # SPECIFIC UPGRADE
  86. #=================================================
  87. # COPY CONFIGS
  88. #=================================================
  89. ynh_script_progression --message="Copying configuration..."
  90. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  91. chown root: /etc/dnsmasq.dhcpd/
  92. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  93. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  94. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  95. # Copy init script
  96. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  97. ynh_replace_string --match_string="__PHPVERSION__" --replace_string="${phpversion}" --target_file="/usr/local/bin/$service_name"
  98. #=================================================
  99. # SETUP SYSTEMD
  100. #=================================================
  101. ynh_script_progression --message="Upgrading systemd configuration..."
  102. # Create a dedicated systemd config
  103. ynh_add_systemd_config --service=$service_name
  104. #=================================================
  105. # GENERIC FINALIZATION
  106. #=================================================
  107. # INTEGRATE SERVICE IN YUNOHOST
  108. #=================================================
  109. ynh_script_progression --message="Integrating service in YunoHost..."
  110. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  111. #=================================================
  112. # START SYSTEMD SERVICE
  113. #=================================================
  114. ynh_script_progression --message="Starting a systemd service..."
  115. hot_reload_usb_wifi_cards
  116. wifi_device=$(bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  117. if [[ -z $wifi_device ]]; then
  118. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  119. wifi_device=""
  120. else
  121. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  122. fi
  123. # Start a systemd service if device is present
  124. if [[ $wifi_device == "" ]]; then
  125. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  126. else
  127. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  128. fi
  129. #=================================================
  130. # END OF SCRIPT
  131. #=================================================
  132. ynh_script_progression --message="Upgrade of $app completed"