updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / grubinvaders / grubinvaders.install
blob4436ba37e0d7064501e087d138b31da95831e12e
1 # This is a default template for a post-install scriptlet.  You can
2 # remove any functions you don't need (and this header).
4 # arg 1:  the new package version
5 post_install() {
6 cat << EOF
7 For using GRUBinvaders please modifiy your bootloaders.
9 If /boot is on root partitions:
10 ==> GRUB add this to /boot/grub/menu.lst
11 title  GRUBinvaders
12 kernel (hd?,?)/boot/grubinvaders/invaders.bin
14 ==> Lilo add this to lilo.conf
15 image  = /boot/grubinvaders/invaders.bin
16 label  = "GRUBinvaders"
18 If /boot is on seperate partition then just use /grubinvaders/invaders.bin
19 without /boot prefix.
20 EOF
23 # arg 1:  the new package version
24 # arg 2:  the old package version
25 post_upgrade() {
26   post_install $1
29 # arg 1:  the old package version
30 post_remove() {
31 cat << EOF
32 Please remove your additions from your bootloaders.
33 EOF
36 op=$1
37 shift
38 $op $*