blob: f64fe65bf13560e32f912d598d0ac18757a17f1e (
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
|
post_install() {
add_service.sh transmissiond
cat << _EOF
You can edit the user and options in /etc/conf.d/transmissiond.
To set up a web interface proxy with lighttpd visit:
http://trac.transmissionbt.com/wiki/WebProxy
Configuration file editing information can be found at:
http://trac.transmissionbt.com/wiki/ConfigFiles
_EOF
}
pre_upgrade() {
rm -f /usr/share/man/man1/transmission*
}
pre_remove() {
remove_service.sh transmissiond
}
|