]> code.delx.au - monosys/blob - healthcheck/systemd-user-units
healthcheck: simplify now that `systemd --user` is running everywhere
[monosys] / healthcheck / systemd-user-units
1 #!/bin/bash
2
3 if systemctl --user is-system-running > /dev/null; then
4 exit 0
5 fi
6
7 echo -e "# systemctl --user --failed"
8 systemctl --user --failed
9 exit 1