13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/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
|
|
|
|
|