diff options
Diffstat (limited to 'libre/notsystemd/systemd-hook')
-rw-r--r-- | libre/notsystemd/systemd-hook | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libre/notsystemd/systemd-hook b/libre/notsystemd/systemd-hook deleted file mode 100644 index 793a42943..000000000 --- a/libre/notsystemd/systemd-hook +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 |