This file is indexed.

/etc/cron.daily/mythtv-status is in mythtv-status 0.10.8-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/bin/sh

. /etc/default/mythtv-status

if [ "x$EMAIL" = "x" -o "x$EMAIL" = "xnone" ]
then
  exit
fi

/usr/bin/mythtv-status --host $HOST --email $EMAIL $EMAIL_ARGS

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