blob: a35aebee71989aa1a3c5578ee72cf730d6fc9c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# arg 1: the new package version
post_install() {
sv stop mythbackend
mv /etc/sv/mythbackend/run /tmp
sed 's/logfile/noupnp\ --logfile/' </tmp/run >/etc/sv/mythbackend/run
sv start mythbackend
add_service.sh fuppes
sv start fuppes
}
post_remove() {
sv stop fuppes
remove_service.sh fuppes
mv /etc/sv/mythbackend/run /tmp/run
sv stop mythbackend
sed 's/--noupnp\ --logfile/--logfile/' </tmp/run >/etc/sv/mythbackend/run
sv start mythbackend
}
|