]> code.delx.au - monosys/blob - healthcheck/systemd-units
healthcheck/disk-usage: ignore blank lines in fstab
[monosys] / healthcheck / systemd-units
1 #!/bin/bash
2
3 if systemctl is-failed -q '*'; then
4 echo -e "# systemctl --failed"
5 systemctl --failed
6 exit 1
7 else
8 exit 0
9 fi