blob: 660565214354cfe0923426509b5c46a5f0722526 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
echo "finding module"
depmod
echo "inserting module"
modprobe promethean
echo " "
echo "If you don't want the promethean module to be loaded on boot, delete /etc/modules-load.d/promethean.conf or delete the matching lines in PKGBUILD and re-install."
echo " "
}
post_upgrade() {
echo "finding module"
depmod
echo "inserting module"
modprobe promethean
echo " "
echo "If you don't want the promethean module to be loaded on boot, delete /etc/modules-load.d/promethean.conf or delete the matching lines in PKGBUILD and re-install."
echo " "
}
|