blob: b556d6060cd447ea63723b9a4f01d8fe8dddcb2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#!/bin/bash
MYTH_RUN_STATUS=1
. /etc/systemconfig
. /etc/profile
date=`date +%Y-%m-%d`
timestamp=`date +'%Y-%m-%d %H:%M'`
hostname=`/usr/bin/hostnamectl hostname`
logFile="/var/log/${date}/${hostname}_lh_mtc.log"
log="logger -t lh_mtc -p local6.info"
if [ ! -f $logFile ]; then
touch $logFile
echo "" | $log
fi
#check logfile for Finished and if not run lh_mtc.py
if ! grep -q "Finished Maintenance" $logFile
then
if ! grep -q "Finished checking size of MythTV home" $logFile
then
sudo -u mythtv bash -c "MYTHCONFDIR=/usr/share/mythtv unbuffer lh_mtc.py --check_home | $log"
if [ $? = 0 ]
then
echo "" | $log
else
echo "Time Exceeded" | $log
exit
fi
fi
if ! grep -q "Finished Optimize" $logFile
then
if [ $SystemType = FrontendOnly ]
then
echo "Will not run Optimize on Frontend Only systems." | $log
echo "Finished Optimize" | $log
else
sudo -u mythtv bash -c "MYTHCONFDIR=/usr/share/mythtv unbuffer lh_mtc.py --optimize | $log"
if [ $? = 0 ]
then
echo "" | $log
else
echo "Time Exceeded" | $log
exit
fi
fi
fi
if ! grep -q "Finished Backup" $logFile && grep -q "Finished Optimize" $logFile
then
sudo -u mythtv bash -c "MYTHCONFDIR=/usr/share/mythtv unbuffer lh_mtc.py --backup | $log"
if [ $? = 0 ]
then
echo "" | $log
else
echo "Time Exceeded" | $log
exit
fi
fi
# if ! grep -q "Finished Update" $logFile
# then
# sudo -u mythtv bash -c "MYTHCONFDIR=/usr/share/mythtv unbuffer lh_mtc.py --update | $log"
# if [ $? = 0 ]
# then
# echo "" | $log
# else
# echo "Time Exceeded" | $log
# exit
# fi
# fi
# if grep -q "Finished checking size of MythTV home" $logFile && grep -q "Finished Optimize" $logFile && grep -q "Finished Backup" $logFile && grep -q "Finished Update" $logFile
if grep -q "Finished checking size of MythTV home" $logFile && grep -q "Finished Optimize" $logFile && grep -q "Finished Backup" $logFile
then
echo "Finished Maintenance" | $log
fi
fi
|