blob: f0b4f5f4e4ab2d709dc96fac35429d1f87923be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo
echo "You MUST edit /etc/conf.d/rpcbind"
echo "Change the line which reads:"
echo
echo "RPCBIND_ARGS=\"\""
echo
echo "to:"
echo
echo "RPCBIND_ARGS=\"-i\""
echo
echo "This is probably insecure."
echo "To start dtlogin, first use systemctl to start rpcbind.service, and then start dtlogin.service"
}
post_upgrade() {
post_install
}
# vim:set ts=2 sw=2 et:
|