blob: e00d294ad1379307fd5a8f0020d23e1f759e77b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
cat << EOF
=======================================================================
Either reboot your system, or set CLVK_CLSPV_PATH=/opt/clvk/clspv in either /etc/environment
or your shell's file (i.e. .bashrc)
Go to https://github.com/kpet/clvk to view more environmental variables
=======================================================================
EOF
}
post_upgrade() {
cat << EOF
=======================================================================
Either reboot your system, or set CLVK_CLSPV_PATH=/opt/clvk/clspv in either /etc/environment
or your shell's file (i.e. .bashrc)
Go to https://github.com/kpet/clvk to view more environmental variables
=======================================================================
EOF
}
|