summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2011-10-14 11:45:17 -0500
committerJohn Southworth <john.southworth@vyatta.com>2011-10-27 17:11:30 -0500
commitfb100420fd6d54d5e86bf090f1123636cd2dc4e6 (patch)
tree5252950fb3d4ef445602b6aeb804040deae9aa82 /templates
parent8babe163cc1bc84165cc19a6e02022522b3d3439 (diff)
downloadvyatta-op-fb100420fd6d54d5e86bf090f1123636cd2dc4e6.tar.gz
vyatta-op-fb100420fd6d54d5e86bf090f1123636cd2dc4e6.zip
Bugfix 7557: Move shutdown to poweroff, change confirmation from default in the affirmative to defualt in the negative.
(cherry picked from commit 54c32901389933b1830404f173b338f885add043)
Diffstat (limited to 'templates')
-rw-r--r--templates/poweroff/at/node.def1
-rw-r--r--templates/poweroff/at/node.tag/node.def (renamed from templates/shutdown/at/node.tag/node.def)2
-rw-r--r--templates/poweroff/cancel/node.def2
-rw-r--r--templates/poweroff/node.def (renamed from templates/shutdown/node.def)4
-rw-r--r--templates/poweroff/now/node.def3
-rw-r--r--templates/shutdown/at/node.def1
-rw-r--r--templates/shutdown/cancel/node.def2
7 files changed, 9 insertions, 6 deletions
diff --git a/templates/poweroff/at/node.def b/templates/poweroff/at/node.def
new file mode 100644
index 0000000..537bfff
--- /dev/null
+++ b/templates/poweroff/at/node.def
@@ -0,0 +1 @@
+help: Poweroff at a specific time
diff --git a/templates/shutdown/at/node.tag/node.def b/templates/poweroff/at/node.tag/node.def
index 3360f88..ccc3b5b 100644
--- a/templates/shutdown/at/node.tag/node.def
+++ b/templates/poweroff/at/node.tag/node.def
@@ -1,4 +1,4 @@
-help: Shutdown the system at a future time
+help: Poweroff the system at a future time
allowed: echo -n '<HH:MM>' '<MMDDYY>' '+MM'
run: if /opt/vyatta/bin/vyatta-gettime.pl $3 >/tmp/shutdown.at
then (sudo /sbin/shutdown -h $3 &
diff --git a/templates/poweroff/cancel/node.def b/templates/poweroff/cancel/node.def
new file mode 100644
index 0000000..c08a72d
--- /dev/null
+++ b/templates/poweroff/cancel/node.def
@@ -0,0 +1,2 @@
+help: Cancel a pending poweroff
+run: sudo /sbin/shutdown -c
diff --git a/templates/shutdown/node.def b/templates/poweroff/node.def
index 81cbc5f..b3a41f1 100644
--- a/templates/shutdown/node.def
+++ b/templates/poweroff/node.def
@@ -1,9 +1,9 @@
-help: Shutdown the system
+help: Poweroff the system
run: if [ "$VYATTA_PROCESS_CLIENT" == "gui2_rest" ]
then
sudo /sbin/shutdown -h now
else
- ${vyatta_bindir}/yesno -y "Proceed with shutdown? [confirm]" \
+ ${vyatta_bindir}/yesno -n "Proceed with poweroff? (Yes/No) [No] " \
&& sudo /sbin/shutdown -h now
fi
diff --git a/templates/poweroff/now/node.def b/templates/poweroff/now/node.def
new file mode 100644
index 0000000..1117668
--- /dev/null
+++ b/templates/poweroff/now/node.def
@@ -0,0 +1,3 @@
+help: Poweroff the system now [disruptive]
+run: sudo /sbin/shutdown -h now
+
diff --git a/templates/shutdown/at/node.def b/templates/shutdown/at/node.def
deleted file mode 100644
index baa0023..0000000
--- a/templates/shutdown/at/node.def
+++ /dev/null
@@ -1 +0,0 @@
-help: Shutdown at a specific time
diff --git a/templates/shutdown/cancel/node.def b/templates/shutdown/cancel/node.def
deleted file mode 100644
index 3095c66..0000000
--- a/templates/shutdown/cancel/node.def
+++ /dev/null
@@ -1,2 +0,0 @@
-help: Cancel a pending shutdown
-run: sudo /sbin/shutdown -c