blob: aee9e58c9534c5711704bd5d283d39fddba55008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
brick() {
echo ""
echo "aparapi was installed in /opt/AMDAPP/aparapi"
echo ""
}
post_install() {
. etc/profile.d/aparapi.sh
brick
}
post_upgrade() {
. etc/profile.d/aparapi.sh
brick
}
|