summarylogtreecommitdiffstats
path: root/bareos-common.install
blob: c82f70d63e0c376164af5ae51a0295c65b204452 (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
# arg 1:  the new package version
pre_install() {
	# Create User/Group
	getent group bareos > /dev/null || groupadd --system bareos
	getent passwd bareos > /dev/null || useradd --system --gid bareos \
		--home-dir /var/lib/bareos --no-create-home bareos

}

# arg 1:  the new package version
post_install() {
	chown bareos:bareos /var/lib/bareos/
	#chown bareos:bareos /var/log/bareos/
}

# arg 1:  the new package version
# arg 2:  the old package version
pre_upgrade() {
	pre_install
}

# arg 1:  the old package version
post_remove() {
	getent passwd bareos > /dev/null && userdel bareos
	rm -f /etc/bareos/.rndpwd
}