blob: b3a41f10952ce276c4bed819c0ff92369551bde9 (
plain)
1
2
3
4
5
6
7
8
9
|
help: Poweroff the system
run: if [ "$VYATTA_PROCESS_CLIENT" == "gui2_rest" ]
then
sudo /sbin/shutdown -h now
else
${vyatta_bindir}/yesno -n "Proceed with poweroff? (Yes/No) [No] " \
&& sudo /sbin/shutdown -h now
fi
|