# 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
}