blob: d0099e38638d9ecbded20676cc9755a79558d401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
chmod 755 /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
chmod 755 /etc/sv/mythbackend/run
sv start mythbackend
}
|