blob: 2e01aaecd509c52e85098136c95e387a578f963a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_upgrade() {
if [ $(vercmp 7.1.11.76496-1 "$2") -eq 1 ]; then
cat <<EOF
Firestorm requires a CPU with avx2 support now, which includes most
processors made in the last decade. No current plans exist to provide
a Firestorm Legacy package for older CPUs, but it could be made with
demand.
EOF
fi
}
post_install() {
cat <<EOF
You must register an account on the official Second Life website in
order to use Second Life: https://secondlife.com/
Remember to log out and back in for the change to take effect.
EOF
}
|