blob: 94a829f5cbd385e9d6d37831191e0e48be34080a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat << _EOF
If you want to run the Transmission daemon at boot do:
systemctl enable transmissiond
_EOF
post_upgrade
passwd -l transmission &>/dev/null
}
post_upgrade() {
# create user/group that the daemon will run as by default, do not delete this on uninstall, as it will own files
getent group transmission >/dev/null || groupadd -g 169 transmission
getent passwd transmission >/dev/null || useradd -c 'Transmission BitTorrent Client' -u 169 -g transmission -b '/var/lib' -m -s /bin/false transmission
systemd-tmpfiles --create transmission.conf
}
|