diff options
Diffstat (limited to 'libre/systemd/systemd-hook')
-rw-r--r-- | libre/systemd/systemd-hook | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/libre/systemd/systemd-hook b/libre/systemd/systemd-hook index c52e71533..79505dfe8 100644 --- a/libre/systemd/systemd-hook +++ b/libre/systemd/systemd-hook @@ -14,23 +14,17 @@ udevd_live() { fi } -each_conf() { - while read -r f; do - "$@" "$(basename "$f")" - done -} - case $1 in catalog) /usr/bin/journalctl --update-catalog ;; hwdb) /usr/bin/systemd-hwdb --usr update ;; update) touch -c /usr ;; - sysusers) each_conf /usr/bin/systemd-sysusers ;; - tmpfiles) each_conf /usr/bin/systemd-tmpfiles --create ;; + sysusers) /usr/bin/systemd-sysusers ;; + tmpfiles) /usr/bin/systemd-tmpfiles --create ;; daemon-reload) systemd_live; /usr/bin/systemctl daemon-reload ;; udev-reload) systemd_live; /usr/bin/udevadm control --reload ;; - binfmt) systemd_live; each_conf /usr/lib/systemd/systemd-binfmt ;; - sysctl) systemd_live; each_conf /usr/lib/systemd/systemd-sysctl ;; + binfmt) systemd_live; /usr/lib/systemd/systemd-binfmt ;; + sysctl) systemd_live; /usr/lib/systemd/systemd-sysctl ;; *) echo >&2 " Invalid operation '$1'"; exit 1 ;; esac |