blob: 35cb13051a0a5f24f88eea024850135c12d3d7e2 (
plain)
1
2
3
4
5
6
7
8
|
# control-alt-delete - emergency keypress handling
#
# This task is run whenever the Control-Alt-Delete key combination is
# pressed. Usually used to shut down the machine.
start on control-alt-delete
exec /sbin/shutdown -r now "Control-Alt-Delete pressed"
|