diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-06-06 09:22:43 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-06-06 09:22:43 -0400 |
commit | 6237ecf456b95ac37864cf91df9cd02795a529d4 (patch) | |
tree | 6c26858ed69113ecc091964324d2b56292a78fe4 /libre/systemd/systemd.install | |
parent | 1c27f57b1a28074a50e05aaa73c47ef55127e318 (diff) | |
parent | 5cd5d2171660435cd34470577be150e2a01d1b5e (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/systemd/systemd.install')
m--------- | libre/systemd | 0 | ||||
-rw-r--r-- | libre/systemd/systemd.install | 50 |
2 files changed, 50 insertions, 0 deletions
diff --git a/libre/systemd b/libre/systemd deleted file mode 160000 -Subproject dd743ddf0d2297079591f90dc75938de160ac55 diff --git a/libre/systemd/systemd.install b/libre/systemd/systemd.install new file mode 100644 index 000000000..0c3e9abee --- /dev/null +++ b/libre/systemd/systemd.install @@ -0,0 +1,50 @@ +#!/bin/sh + +checkgroups() { + if ! getent group lock >/dev/null; then + groupadd -g 54 lock + fi +} + +sd_booted() { + [ -e sys/fs/cgroup/systemd ] +} + +post_install() { + checkgroups + + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + echo "systemd has been installed to /bin/systemd. Please ensure you append" + echo "init=/bin/systemd to your kernel command line in your bootloader." +} + +post_upgrade() { + checkgroups + + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + if sd_booted; then + # we moved the binary in 44-2 to /usr, so a reexec leads to a + # coredump. refuse this reexec and warn the user that they should + # reboot instead. + if [ "$(vercmp 44-2 "$2")" -eq 1 ]; then + echo "warning: refusing to reexec systemd. the system should be rebooted." + else + systemctl daemon-reload + systemctl daemon-reexec + fi + fi +} + +post_remove() { + if getent group lock >/dev/null; then + groupdel lock + fi +} + +# vim:set ts=2 sw=2 et: |