From 3686c619c00b04e4104565532bbad2e76c8fab2c Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 27 May 2024 19:00:35 +0200 Subject: make soft-reboot functionality mandatory This makes sure /run is preserved, and allows us to implement some more functionality later on. --- bin/pacman-offline | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'bin') diff --git a/bin/pacman-offline b/bin/pacman-offline index a8474e2..7ca2d25 100755 --- a/bin/pacman-offline +++ b/bin/pacman-offline @@ -99,17 +99,12 @@ pacman --config /run/pacman.conf --sync --noconfirm --sysupgrade --downloadonly # enable system update ln -sf /var/cache/pacman/pkg /system-update -# reboot if requested +# (soft-)reboot if requested if [ ${REBOOT} -eq 1 ]; then - if systemctl --dry-run soft-reboot 2>/dev/null; then - echo "Soft-rebooting for update." - systemctl soft-reboot - else - echo "Rebooting for update." - systemctl reboot - fi + echo "Soft-rebooting for update." + systemctl soft-reboot # force a soft-reboot on (manual) reboot -elif [ -e /usr/lib/systemd/system/systemd-soft-reboot.service ]; then +else ln -sf ../../../usr/lib/systemd/system/systemd-soft-reboot.service /run/systemd/system/systemd-reboot.service systemctl daemon-reload fi -- cgit v1.2.3-70-g09d2