diff options
author | Christian Hesse <mail@eworm.de> | 2019-10-31 10:56:39 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2019-10-31 10:56:39 +0100 |
commit | 52d2d0d1955f87155fefd8c3e46b93d010909af0 (patch) | |
tree | 3b1fc1b70d3d9f881b0f0cd68312c96169fb477b /systemd | |
parent | 784880bd7d9c043df7ce281b4ecb8e145a60a80f (diff) | |
download | pacman-offline-52d2d0d1955f87155fefd8c3e46b93d010909af0.tar.gz pacman-offline-52d2d0d1955f87155fefd8c3e46b93d010909af0.tar.zst |
add timer for reboot
Diffstat (limited to 'systemd')
-rw-r--r-- | systemd/pacman-offline-reboot.service | 7 | ||||
-rw-r--r-- | systemd/pacman-offline-reboot.timer | 10 |
2 files changed, 17 insertions, 0 deletions
diff --git a/systemd/pacman-offline-reboot.service b/systemd/pacman-offline-reboot.service new file mode 100644 index 0000000..bb7a44f --- /dev/null +++ b/systemd/pacman-offline-reboot.service @@ -0,0 +1,7 @@ +[Unit] +Description=Reboot for pacman offline system-update +ConditionPathExists=/system-update + +[Service] +Type=oneshot +ExecStart=/usr/bin/systemctl reboot diff --git a/systemd/pacman-offline-reboot.timer b/systemd/pacman-offline-reboot.timer new file mode 100644 index 0000000..b958b84 --- /dev/null +++ b/systemd/pacman-offline-reboot.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Reboot for pacman offline system-update +ConditionPathExists=/system-update + +[Timer] +OnCalendar=03:00:00 +RandomizedDelaySec=2hours + +[Install] +WantedBy=timers.target |