diff options
Diffstat (limited to 'systemd/pacman-offline')
-rwxr-xr-x | systemd/pacman-offline | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systemd/pacman-offline b/systemd/pacman-offline index 973dc01..bacf696 100755 --- a/systemd/pacman-offline +++ b/systemd/pacman-offline @@ -32,8 +32,8 @@ pacman --config /run/pacman.conf --sync --noconfirm --sysupgrade # clean up package cache pacman --sync --noconfirm --clean -# reboot -if [ -s "/usr/lib/modules/$(uname -r)/pkgbase" ] && systemctl --dry-run soft-reboot 2>/dev/null; then +# (soft-)reboot +if [ -s "/usr/lib/modules/$(uname -r)/pkgbase" ]; then systemctl soft-reboot else systemctl reboot |