summarylogtreecommitdiffstats
path: root/holyspirit.install
blob: 83181b60ea3bbf460298e9511022655eddc44c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
logfile="/opt/share/games/holyspirit/Log.txt"

post_install() {
    echo "Add yourself to the games group and relog to play holyspirit"
    if [ ! -e "$logfile" ]; then
        touch "$logfile"
        chgrp games "$logfile"
        chmod g+w "$logfile"
    fi
}

post_upgrade() {
    if [ ! -e "$logfile" ]; then
        touch "$logfile"
        chgrp games "$logfile"
        chmod g+w "$logfile"
    fi
}

pre_remove() {
    rm -f "$logfile"
}