#!/bin/sh

# Skip in favour of systemd timer
[ -d /run/systemd/system ] && exit 0

# Common script shared with the systemd service to perform a health
# check of the MythTV system..
[ -x /usr/libexec/mythtv-status/health-check ] \
    && /usr/libexec/mythtv-status/health-check

# Keep run-parts happy by always returning with a return code of 0.
exit 0
