summarylogtreecommitdiffstats
path: root/spearmint.install
blob: 3904d6ba7414c8bf294dcf4ec26cfaf533e71283 (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
post_install() {
    groupadd -f games
    useradd -r -s /sbin/nologin -c "Spearmint Daemon user" -M -d /opt/quake3 -g games spearmint > /dev/null 2>&1

    echo '!!!'
    echo '!!! To play Spearmint with the Retail Version of Quake III: Arena,'
    echo '!!!  move the pak0.pk3 file from the original game CD to /opt/quake3/baseq3/'
    echo '!!!'
    echo '!!!'
    echo '!!! When you have the .pk3 file(s) installed, you can run the game via: quake3'
    echo '!!! See https://github.com/zturtleman/spearmint/wiki for more documentation.'
    echo '!!!'
}

post_upgrade() {
    post_install ${1}
}

post_remove() {
    userdel -rf spearmint > /dev/null 2>&1
    if egrep -q '^games:.*:$' /etc/group;
    then
      groupdel games
    fi
}