restore 912 B

123456789101112131415161718192021222324252627282930
  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. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. # Exit if an error occurs during the execution of the script
  13. ynh_abort_if_errors
  14. #=================================================
  15. gitcommit=$(sudo grep revision /etc/yunohost/apps/hotspot/status.json | sed 's/.*"revision": "\([^"]\+\)".*/\1/')
  16. tmpdir=$(mktemp -dp /tmp/ hotspot-restore-XXXXX)
  17. git clone https://github.com/labriqueinternet/hotspot_ynh.git "${tmpdir}/"
  18. git --work-tree "${tmpdir}/" --git-dir "${tmpdir}/.git/" reset --hard "${gitcommit}"
  19. cd "${tmpdir}/scripts/"
  20. bash ./upgrade
  21. sudo rm -r "${tmpdir}/"