From f212c9ef2c9479824308b3a5378e508d13020b46 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 22 Sep 2017 00:36:39 +0200 Subject: initial commit --- systemd/pacman-offline | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 systemd/pacman-offline (limited to 'systemd/pacman-offline') diff --git a/systemd/pacman-offline b/systemd/pacman-offline new file mode 100755 index 0000000..9764666 --- /dev/null +++ b/systemd/pacman-offline @@ -0,0 +1,17 @@ +#!/bin/sh + +set -e + +# verify this is for us or exit gracefully +if [ "$(readlink '/system-update')" != '/var/cache/pacman/pkg' ]; then + exit 0 +fi + +# install updates +pacman -Su --noconfirm + +# remove triggering symlink +rm -f /system-update + +# reboot +systemctl reboot -- cgit v1.2.3-54-g00ecf