helpers 800 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/bin/bash
  2. source /usr/share/yunohost/helpers
  3. #
  4. # Helper to start/stop/.. a systemd service from a yunohost context,
  5. # *and* the systemd service itself needs to be able to run yunohost
  6. # commands.
  7. #
  8. # Hence the need to release the lock during the operation
  9. #
  10. # usage : ynh_systemctl yolo restart
  11. #
  12. function ynh_systemctl()
  13. {
  14. local ACTION="$1"
  15. local SERVICE="$2"
  16. local LOCKFILE="/var/run/moulinette_yunohost.lock"
  17. # Launch the action
  18. sudo systemctl "$ACTION" "$SERVICE" &
  19. local SYSCTLACTION=$!
  20. # Save and release the lock...
  21. cp $LOCKFILE $LOCKFILE.bkp.$$
  22. rm $LOCKFILE
  23. # Wait for the end of the action
  24. wait $SYSCTLACTION
  25. # Make sure the lock is released...
  26. while [ -f $LOCKFILE ]
  27. do
  28. sleep 0.1
  29. done
  30. # Restore the old lock
  31. mv $LOCKFILE.bkp.$$ $LOCKFILE
  32. }