1
0
mirror of synced 2026-02-05 23:44:48 +00:00
Files
xen-tools.xen-tools/hooks/debian/30-fix-inittab
steve 59eaa22a4b 2006-08-17 12:30:11 by steve
Avoid changing console types to "console" so that job control
 remains available.
2006-08-17 12:30:16 +00:00

41 lines
579 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.
#
# Steve
# --
# http://www.steve.org.uk/
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
#
# Do the transformation.
#
sed -i -e 's/^\([2-6].*:respawn*\)/#\1/' -e 's/^T/#\t/' ${prefix}/etc/inittab
#
# Log our finish
#
logMessage Script $0 finished