~ubuntu-branches/ubuntu/wily/console-setup/wily

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

CONFIGDIR=/etc/console-setup

if [ "$1" = remove ]; then
	update-alternatives --remove vtrgb "$CONFIGDIR/vtrgb"
	update-alternatives --remove vtrgb "$CONFIGDIR/vtrgb.vga"
fi

#DEBHELPER#