blob: 029c3f015fc65a6d4ffa97627d5bcf1798062acc (
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
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
}
|