blob: 125cc595041c933d4cf4f67548196bb62b5cb34e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install() {
cat << EOF
Invaders is a kernel game. For using it please modify your bootloaders.
==> GRUB: add this to /boot/grub/grub.cfg
menuentry "invaders" {
set root=YOURROOTDEVICE
multiboot /boot/invaders
boot
}
==> Lilo: add this to lilo.conf
image = ${_boot}/invaders
label = "Invaders"
EOF
}
post_upgrade() {
post_install $1
}
post_remove() {
cat << EOF
Please remove your additions from your bootloaders.
EOF
}
|