0f44e1679c
Use of && is bad in this context since it will return 1 causing cosmos to exit with status 1 if a reboot is not required.
6 lines
99 B
Bash
Executable file
6 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -f /var/run/reboot-required -a -f /etc/cosmos-automatic-reboot ]; then
|
|
reboot
|
|
fi
|