summaryrefslogtreecommitdiffstats
path: root/abs/core/runit-scripts/runitscripts/services/mythexport/run
blob: 45f77fdd8a72cdac3d78746dccd37b322fda16b1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

/sbin/chpst -u mythtv /usr/bin/mythexport-daemon

PID=`pidof -o %PPID -x /usr/bin/mythexport-daemon`

# Wait until daemon dies, else runit can't supervise us
  while [ "`pidof -o %PPID -x /usr/bin/mythexport-daemon`" == "$PID" ]; do
    sleep 2
  done