blob: a9d21714cf97583c47d5801bc7b3dac708e1d019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo "Create /etc/tcpconsole.pw and put password there, then chmod 600 /etc/tcpconsole.pw."
echo "You may also need to create vcsa device (mknod -m 600 /dev/vcsa c 7 0)."
echo "Tcpconsole listens on 4095. Use telnet to login."
echo "More info at http://www.vanheusden.com/tcpconsole/"
/bin/true
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
p=$1
shift
$op "$@"
|