blob: 9cc8edd48126a1b84143da9f5c6ed96e986e5540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
## arg 1: the new package version
post_install() {
systemd-sysusers rspamd.conf
systemd-tmpfiles --create rspamd.conf
install --directory --mode=0750 --owner=_rspamd --group=_rspamd /var/lib/rspamd
}
## arg 1: the old package version
post_remove() {
true
}
# vim: set tabstop=4:softtabstop=4:shiftwidth=4:noexpandtab
|