blob: 6ec7fba9b915c5931a5d7a7fcb5c24ac623308e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo
echo "==> xmage's files are located in /usr/share/xmage"
echo "==>"
echo "==> xmage will automatically increase the (default)"
echo "==> amount of RAM available to both the client"
echo "==> and the server from 512MB to 1024MB"
echo "==> If you wish to change the amount of RAM available"
echo "==> to xmage, edit /bin/mage-client or /bin/mage-server"
echo "==> and change the 1024 in '-Xmx1024m' to the amount"
echo "==> of RAM(in MB) you wish to make available"
echo
}
post_upgrade() {
echo
echo "==> Release notes can be found at"
echo "==> https://github.com/magefree/mage/wiki/Release-changes"
echo
}
|