blob: af8725ec5518529ff9997b1a28c3a93397f3b1dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo " "
echo " ZSH: For the use of module-cmd in a none-login Z-shell enviroment"
echo " the following entry should be added to the zshrc "
echo " (or zshenv if the module-cmd should be available in shell-scripts)"
echo " "
echo " (( \${+functions[module]} )) || source /etc/modules/init/zsh"
echo " "
echo " Adapt /etc/modules/init/modulerc and add your modulefiles to the specified directories."
echo " "
}
post_upgrade() {
post_install
}
|