From a8479069799046c97ef918b27d7428d6754b3fdc Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 11 Jul 2023 13:08:46 +0200 Subject: support systemd without soft-reboot --- systemd/pacman-offline | 2 +- systemd/pacman-offline-reboot.service | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'systemd') diff --git a/systemd/pacman-offline b/systemd/pacman-offline index 48692eb..b3db182 100755 --- a/systemd/pacman-offline +++ b/systemd/pacman-offline @@ -25,7 +25,7 @@ pacman --config /run/pacman.conf --sync --noconfirm --sysupgrade pacman --sync --noconfirm --clean # reboot -if [ -s "/usr/lib/modules/$(uname -r)/pkgbase" ]; then +if [ -s "/usr/lib/modules/$(uname -r)/pkgbase" ] && systemctl --dry-run soft-reboot 2>/dev/null; then systemctl soft-reboot else systemctl reboot diff --git a/systemd/pacman-offline-reboot.service b/systemd/pacman-offline-reboot.service index 7026061..f7f3612 100644 --- a/systemd/pacman-offline-reboot.service +++ b/systemd/pacman-offline-reboot.service @@ -4,4 +4,4 @@ ConditionPathExists=/system-update [Service] Type=oneshot -ExecStart=/usr/bin/systemctl soft-reboot +ExecStart=/bin/sh -c "if systemctl --dry-run soft-reboot 2>/dev/null; then systemctl soft-reboot; else systemctl reboot; fi" -- cgit v1.2.3-54-g00ecf