blob: 9b1d1db9db783a098c48c71084aa689be09801bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ">> To enable libtrash at login:"
echo ">> chmod 755 /etc/profile.d/libtrash.sh"
echo ">> To enable libtrash at any moment:"
echo ">> . /etc/profile.d/libtrash.sh"
echo ">> To disable libtrash at any moment:"
echo ">> unset LD_PRELOAD"
echo ">> WARNING: fakeroot will not work while libtrash is enabled."
echo ">> Disable libtrash before using fakeroot!"
}
post_upgrade() {
post_install
}
|