blob: 52bd3a4fe4ce8bff06c37fb0fe5b8f57265121f1 (
plain)
1
2
3
4
5
6
7
8
|
help: Show scheduled shutdown
run: if [ -f /var/run/shutdown.pid ]
then if [ -r /tmp/shutdown.at ]
then echo -n "Shutdown pending at "; cat /tmp/shutdown.at
else echo "Shutdown pending"
fi
else echo "No shutdown pending"
fi
|