osi-tools/abs/systemd-not/systemd-hook

24 lines
593 B
Plaintext
Raw Normal View History

2018-07-26 22:26:45 +00:00
#!/bin/sh -e
systemd_live() {
if [ ! -d /run/systemd/system ]; then
echo >&2 " Skipped: Current root is not booted."
exit 0
fi
}
case $1 in
catalog) /usr/bin/journalctl --update-catalog ;;
update) touch -c /usr ;;
sysusers) /usr/bin/systemd-sysusers ;;
tmpfiles) /usr/bin/systemd-tmpfiles --create ;;
daemon-reload) systemd_live; /usr/bin/systemctl daemon-reload ;;
binfmt) systemd_live; /usr/lib/systemd/systemd-binfmt ;;
sysctl) systemd_live; /usr/lib/systemd/systemd-sysctl ;;
*) echo >&2 " Invalid operation '$1'"; exit 1 ;;
esac
exit 0