9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f "/var/run/reboot-required" ]; then
|
|
echo "----- Reboot Needed ---------------------------------"
|
|
else
|
|
echo "----- Reboot *Not* Needed ---------------------------"
|
|
fi
|
|
|