1234567891011121314151617181920212223242526272829 |
- #!/bin/sh -e
- systemd_live() {
- if [ ! -d /run/systemd/system ]; then
- echo >&2 " Skipped: Current root is not booted."
- exit 0
- fi
- }
- op="$1"; shift
- case "$op" 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 ;;
- # For use by other packages
- reload) systemd_live; /usr/bin/systemctl try-reload-or-restart "$@" ;;
- *) echo >&2 " Invalid operation '$op'"; exit 1 ;;
- esac
- exit 0
|