blob: 7634054917ffa3dc5a7178c075530041518c4877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
echo
echo "To start dtlogin, first use systemctl to start rpcbind.service, and then start dtlogin.service"
echo
echo "Security Note copied from https://sourceforge.net/p/cdesktopenv/wiki/Home/"
echo
echo "CDE has had quite a few known security vulnerabilities in it, and it is likely that several more unknown ones still exist."
echo "Don't expose it to the Internet. In fact, never expose any desktop to the Internet."
echo
echo "You should think strongly about enabling the dtspcd and rpc.ttdbserver daemons."
echo "Unless you know what they do, you almost certainly don't need them."
echo
echo "The following advisories have no traced resolution in this release;"
echo "xxxxxx - 1999-11-xx - http://www.cert.org/advisories/CA-1999-11.html"
echo "179804 - 2004-03-23 - http://www.kb.cert.org/vuls/id/179804"
echo
}
post_upgrade() {
post_install
}
|