restore 349 B

1234567891011121314
  1. #!/bin/bash
  2. gitcommit=$(sudo yunohost app setting hotspot gitcommit)
  3. tmpdir=$(mktemp -dp /tmp/ hotspot-restore-XXXXX)
  4. git clone https://github.com/labriqueinternet/hotspot_ynh.git "${tmpdir}/"
  5. git --work-tree "${tmpdir}/" --git-dir "${tmpdir}/.git/" reset --hard "${gitcommit}"
  6. cd "${tmpdir}/scripts/"
  7. ./upgrade
  8. sudo rm -r "${tmpdir}/"
  9. exit 0