Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
3 |
- |
1 |
# control-alt-delete - emergency keypress handling
|
|
|
2 |
#
|
|
|
3 |
# This task is run whenever the Control-Alt-Delete key combination is
|
|
|
4 |
# pressed. Usually used to shut down the machine.
|
|
|
5 |
#
|
|
|
6 |
# Do not edit this file directly. If you want to change the behaviour,
|
|
|
7 |
# please create a file control-alt-delete.override and put your changes there.
|
|
|
8 |
|
|
|
9 |
start on control-alt-delete
|
|
|
10 |
|
|
|
11 |
exec /sbin/shutdown -r now "Control-Alt-Delete pressed"
|