summarylogtreecommitdiffstats
path: root/forge-server-custom.install
blob: b42577dcd3f33f01477be9ab1ed77ee1179c959b (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
26
27
28
post_install() {
	if ! getent group "forge" &>/dev/null; then
		echo "Adding forge system group..."
		groupadd -r forge 1>/dev/null
	fi

	if ! getent passwd "forge" &>/dev/null; then
		echo "Adding forge system user..."
		useradd -r -g forge -d /srv/forge forge 1>/dev/null
	fi

	chown -R forge:forge /srv/forge

	echo "The world data is stored under /srv/forge and the server runs as the forge user to increase security."
	echo "Use the forged script under /usr/bin/forged to start, stop or backup the server."
	echo "Adjust the configuration file under /etc/conf.d/forge to your liking."
	echo "For the server to start you have to accept the EULA in /srv/forge/eula.txt!"
	echo "The EULA file is generated after the first server start."
}

post_upgrade() {
	chown -R forge:forge /srv/forge
}

post_remove() {
	[ -d "/srv/forge" ] && echo "Game saves in /srv/forge were kept on your system."
	echo "The forge user was preserved on your system."
}