shutdown 174 B

1234567891011
  1. #!/bin/sh
  2. herd stop root
  3. sleep 2
  4. # Use 'halt' on GuixSD.
  5. if [ -d "/run/current-system" ]; then
  6. sudo /run/current-system/profile/sbin/halt
  7. else
  8. systemctl poweroff
  9. fi