| Revision 1108, 260 bytes checked in by daisuke, 16 years ago (diff) |
|---|
| Line | |
|---|---|
| 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 | start on control-alt-delete |
| 7 | |
| 8 | exec /sbin/shutdown -r now "Control-Alt-Delete pressed" |