* Don't emit ctrl-alt-delete.

svn path=/nixos/trunk/; revision=7574
This commit is contained in:
Eelco Dolstra 2007-01-08 21:25:06 +00:00
parent b7f11ad98b
commit 873a8de2ad

View File

@ -71,8 +71,8 @@ if test "$action" = "switch" -o "$action" = "test"; then
# Start all new services and restart all changed services.
for event in $(cd $newEvents && ls); do
# Hack: skip the sys-* events.
if echo "$event" | grep -q "^sys-"; then continue; fi
# Hack: skip the sys-* and ctrl-alt-delete events.
if echo "$event" | grep -q "^sys-\|^ctrl-"; then continue; fi
if ! test -e "$oldEvents/$event"; then
echo "starting $event..."