diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-12 10:13:44 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-12 10:16:17 -0700 |
commit | 15dc850144375cf53e85d6b5a2e9cbbca3eec3ca (patch) | |
tree | 10fd217658749dbf6c80b5d07e50e50cd168c037 /templates/show | |
parent | 0f26d05ff7f1b49d01449774b0add799024bde7e (diff) | |
download | vyatta-op-15dc850144375cf53e85d6b5a2e9cbbca3eec3ca.tar.gz vyatta-op-15dc850144375cf53e85d6b5a2e9cbbca3eec3ca.zip |
Add show shutdown
Bug 4217
Add show shutdown, try and determine time.
Diffstat (limited to 'templates/show')
-rw-r--r-- | templates/show/shutdown/node.def | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/show/shutdown/node.def b/templates/show/shutdown/node.def new file mode 100644 index 0000000..ecc8c4b --- /dev/null +++ b/templates/show/shutdown/node.def @@ -0,0 +1,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 |