diff options
Diffstat (limited to 'chapter07/reboot.xml')
-rw-r--r-- | chapter07/reboot.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/chapter07/reboot.xml b/chapter07/reboot.xml new file mode 100644 index 000000000..e57410c48 --- /dev/null +++ b/chapter07/reboot.xml @@ -0,0 +1,30 @@ +<sect1 id="ch07-reboot"> +<title>Creating the reboot script</title> + +<para> +Create a new file <filename>/etc/init.d/reboot</filename> containing the +following: +</para> + +<literallayout> + +<userinput>cat > reboot << "EOF"</userinput> +#!/bin/sh +# Begin /etc/init.d/reboot + +# +# Call reboot. See man halt for the meaning of the parameters +# + + +echo "System reboot in progress..." + +/sbin/reboot -d -f -i + +# End /etc/init.d/reboot +<userinput>EOF</userinput> + +</literallayout> + +</sect1> + |