Most distributions cleanly reboot the system, mimicing the behaviour that most users expect. Figure 9-14 shows how this is done.
Figure 9-14. Default handling of Ctrl-Alt-Delete in /etc/inittab
# Trap CTRL-ALT-DELETE ca::ctrlaltdel:/sbin/shutdown -t3 -r now |
Depending upon each individual site you may wish to disable Ctrl-Alt-Delete. This is shown in Figure 9-15.
Figure 9-15. Ignoring Ctrl-Alt-Delete in /etc/inittab
# Trap CTRL-ALT-DELETE and do nothing ca::ctrlaltdel: |
Figure 9-16. Shut down cleanly upon Ctrl-Alt-Delete in /etc/inittab
# Trap CTRL-ALT-DELETE and shut down ca::ctrlaltdel:/sbin/shutdown -t3 -h now |