blob: 1a94cb8da47d2bb9373bc61448d8c8c30914dc6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ""
echo "Don't forget to add yourself to the 'amber' group and re-login in order to be able to use AmberTools binaries."
echo "You should source /opt/ambertools/amber.sh to set up environment for AmberTools or use modulefile installed to /opt/ambertools/share/modulefiles/ambertools"
echo ""
}
post_upgrade() {
echo ""
echo "Don't forget to add yourself to the 'amber' group and re-login in order to be able to use AmberTools binaries."
echo "You should source /opt/ambertools/amber.sh to set up environment for AmberTools or use modulefile installed to /opt/ambertools/share/modulefiles/ambertools"
echo ""
}
|