summarylogtreecommitdiffstats
path: root/fix-permissions.sh
blob: d8b19d73d73d637a803943689e936a6f940dac79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/sh

_group="${1:-games}"

getent group $_group &> /dev/null

if [ $? != 0 ]; then
    echo "group '$_group' not found";
    echo "${0##/} [group]       default: games"
    exit 1
fi

# fix permissions
chgrp -R $_group /opt/dungeon-keeper-gold/{data,save,sound}
chmod -R g+w     /opt/dungeon-keeper-gold/{data,save,sound}