summarylogtreecommitdiffstats
path: root/sandpolis-server.install
blob: cee38991938640d7ba71d9acbaafef39b6d4347d (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
	echo "Creating 'sandpolis' user account"
	useradd -M -s /bin/false sandpolis
	chown -R sandpolis /var/lib/sandpolis-server
	chown -R sandpolis /var/log/sandpolis-server
	chown -R sandpolis /usr/share/java/sandpolis-server
}

post_remove() {
	userdel sandpolis
}