blob: fa5fdeea275ae000df060e9b770d9039be3a8784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
ldconfig &> /dev/null
mkpamserv trinity
echo "Please remember that you can change your kdesu backend"
echo "from su to sudo by adding following lines to your"
echo "~/.trinity/share/kdesurc or to $TDEDIR/share/config/kdesurc:"
echo "[super-user-command]"
echo "super-user-command=sudo"
}
post_upgrade() {
post_install
}
post_remove() {
ldconfig &> /dev/null
rm /etc/pam.d/trinity
}
|