blob: 36a2598b5425e4af47a9150963ef9f3d50704e44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
post_install() {
echo ">>> Copy the following files off a Windows installation or CD-ROM to the"
echo ">>> /opt/iortcw-data/ directory in order to play:"
echo ">>> pak0.pk3"
echo ">>> sp_pak1.pk3"
echo ">>> mp_pak0.pk3"
echo ">>>"
}
post_upgrade() {
post_install $1
}
pre_remove() {
/bin/true
}
post_remove() {
echo ">>> To complete the uninstallation remove the RtCW data directory:"
echo ">>> rm -r /opt/iortcw-data/"
echo ">>>"
}
|