blob: ccfc97b2aa62cf6e44e3f80174386a30a1d842de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
post_install() {
echo "-----------------------------------------------"
echo "Environment variables have changed. Either log"
echo "out and back in or source /etc/profile before"
echo "using pvm!"
echo ""
echo "NOTE: To enable other computers to invoke the"
echo " PVM daemon on your machine, add the"
echo " source /etc/profile.d/pvm3.sh"
echo " command to your .bashrc"
echo "-----------------------------------------------"
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
op=$1
shift
$op "$@"
|