blob: 8168330f79afb22bc5639484a9f8b8cead37db81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
post_install() {
echo ""
echo -e "\033[1;32m==> Any suggestion, comment, etc.? Please, visit one of the following: \033[1;34m"
echo -e " => https://github.com/jorge-barroso/baamanga"
echo -e " => https://sourceforge.net/projects/baamanga/"
echo -e " => http://baamanga.tk/"
echo ""
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|