upgrade 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # 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. app=$YNH_APP_INSTANCE_NAME
  18. domain=$(ynh_app_setting_get $app domain)
  19. path_url=$(ynh_app_setting_get $app path)
  20. wifi_ssid=$(ynh_app_setting_get $app wifi_ssid)
  21. wifi_passphrase=$(ynh_app_setting_get $app wifi_passphrase)
  22. firmware_nonfree=$(ynh_app_setting_get $app firmware_nonfree)
  23. final_path=$(ynh_app_setting_get $app final_path)
  24. multissid=$(ynh_app_setting_get $app multissid)
  25. #=================================================
  26. # CHECK THE PATH
  27. #=================================================
  28. # Normalize the URL path syntax
  29. path_url=$(ynh_normalize_url_path $path_url)
  30. #=================================================
  31. # SPECIFIC UPGRADE
  32. #=================================================
  33. source ./prerequisites
  34. # Changes
  35. if [[ -z $(ynh_app_setting_get $app ip6_firewall) ]]; then
  36. ip6_firewall=$(printf '1|%.0s' $(seq "${multissid}"))
  37. ip6_firewall=$(echo "${ip6_firewall%?}")
  38. ynh_app_setting_set "${app}" ip6_firewall -v "${ip6_firewall}"
  39. fi
  40. ynh_systemctl start ynh-hotspot