summaryrefslogtreecommitdiff
path: root/global/post-tasks.d/999reboot
diff options
context:
space:
mode:
Diffstat (limited to 'global/post-tasks.d/999reboot')
-rwxr-xr-xglobal/post-tasks.d/999reboot4
1 files changed, 3 insertions, 1 deletions
diff --git a/global/post-tasks.d/999reboot b/global/post-tasks.d/999reboot
index 5331446..2ed9fa7 100755
--- a/global/post-tasks.d/999reboot
+++ b/global/post-tasks.d/999reboot
@@ -1,3 +1,5 @@
#!/bin/sh
-test -f /var/run/reboot-required -a ! -f /etc/cosmos-manual-reboot && reboot
+if [ -f /var/run/reboot-required -a -f /etc/cosmos-automatic-reboot ]; then
+ reboot
+fi