summarylogtreecommitdiffstats
path: root/cgame2.install
blob: 3723674132d653828bd21f0b22ec84c7e9010a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
	echo "Create the program data directory"
	mkdir -p "/etc/cgame2"
	chmod 0777 "/etc/cgame2"
}

post_remove() {
	echo "Delete the program data directory"
	rm -r "/etc/cgame2/"
}

post_upgrade() {
	echo "Program data will not be removed"
}