1
0
mirror of synced 2026-04-25 03:54:31 +00:00
Files
xen-tools.xen-tools/hooks/edgy/30-disable-gettys
steve f897184ffa 2007-03-31 20:29:38 by steve
/bin/dash compatability fix.
2007-03-31 20:29:38 +00:00

36 lines
499 B
Bash
Executable File

#!/bin/sh
#
# This script comments out all virtual terminals which aren't on the
# first console - that must remain so that 'xm console ...' works
# correctly.
#
prefix=$1
#
# Source our common functions
#
if [ -e /usr/lib/xen-tools/common.sh ]; then
. /usr/lib/xen-tools/common.sh
else
. ./hooks/common.sh
fi
#
# Log our start
#
logMessage Script $0 starting
#
# Remove the links for upstart
#
rm ${prefix}/etc/event.d/tty[!1]
#
# Log our finish
#
logMessage Script $0 finished