mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
25 lines
548 B
Text
25 lines
548 B
Text
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 "$@"
|