blob: 37d5e33de9fdb9693c39ef4954c354d70d2b886a (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
#!/bin/bash
MYTH_RUN_STATUS="1"
. /etc/profile
. /etc/systemconfig
shopt -s -o nounset
echo $@ >> /tmp/wrapper.out
#TEMPLATES="/usr/share/templates/settings"
TEMPLATES="$TEMPLATES/settings"
TABLES="settings keybindings jumppoints"
MYTHDBUSER=mythtv
MYTHTVPASSWD=mythtv
declare -r OPTSTRING="c:e:t:d:h:s:a:z:Ho:n:j:"
Thistemplate=""
declare -i OVERRIDE=0
declare -i EVERYTHING=0
gen_xml="/tmp/generated.xml"
function ARG_ERR() {
if [ x$OPTARG = "x" ]
then
echo "$SWITCH NEEDS AND ARG"
exit 11
fi
}
function ALSADEVICE () {
#ALSA:hw:1,4
if [ x$Audiotype = xALSA ]
then
SoundDevice=ALSA:$SoundDevice
MixerDevice="ALSA:default"
else
MixerDevice="/dev/mixer"
fi
}
function load_xml(){
xml_file=$1
mythutil --import-settings --infile $xml_file
cat $xml_file
}
function define_xml() {
xml_data=${1}
xml_hostname=${2}
xml_table=${3}
xml_value=${4}
cat >$gen_xml <<EOF
<!DOCTYPE mythutils_exported_settings>
<exported_xml>
<record>
<data>$xml_data</data>
<hostname>$xml_hostname</hostname>
<table>$xml_table</table>
<value>$xml_value</value>
</record>
</exported_xml>
EOF
}
if [ $# -eq 0 ]
then
echo "Valid options are:"
echo " -c (save|save-default|restore|load|uhostname|BECONFIG|ZIP|ACCESSCONTROL)"
echo " -t (syssettings|hostsettings)"
echo " -d databasename"
echo " -h hostname"
echo " -s systemtype (master|slave|standalone|frontendonly)"
echo " -a ipaddress"
echo " -z zipcode"
echo " -o override (only used upgrade installs)"
exit 1
fi
while getopts "$OPTSTRING" SWITCH
do
case $SWITCH in
# \?) echo "unkown option"
# exit 11 ;;
c) echo "$SWITCH" "$OPTARG"
ARG_ERR
OPERATION=$OPTARG
;;
t) echo "$SWITCH" "$OPTARG"
ARG_ERR
Thistemplate=$OPTARG
if [ x$Thistemplate = x"syssettings" ]
then
echo "template is syssettings"
loadhost=false
elif [ x$Thistemplate = x"hostsettings" ]
then
echo "template is hostsettings"
Thistemplate=syssettings
loadhost=true
elif [ x$Thistemplate = x"distro_default" ]
then
echo "template is distro_default"
loadhost=false
elif [ x$Thistemplate = x"custom" ]
then
echo "template is custom"
else
echo "invalid template name"
exit 1
fi
;;
d) echo "$SWITCH" "$OPTARG"
ARG_ERR
if [ $OVERRIDE = 1 ]
then
ovdbhost=$OPTARG
else
dbhost=$OPTARG
fi
;;
h) echo "$SWITCH" "$OPTARG"
ARG_ERR
if [ $OVERRIDE = 1 ]
then
oldhostname=$hostname
hostname=$OPTARG
else
hostname=$OPTARG
fi
;;
s) echo "$SWITCH" "$OPTARG"
ARG_ERR
SYSTEMTYPE=$OPTARG
;;
a) echo "$SWITCH" "$OPTARG"
ARG_ERR
IP_ADDRESS=$OPTARG
;;
z) echo "$SWITCH" "$OPTARG"
ARG_ERR
ZIPCODE=$OPTARG
;;
n) echo "$SWITCH" "$OPTARG"
newhostname=$OPTARG
;;
j) echo "$SWITCH" "$OPTARG"
oldhostname=$OPTARG
;;
o) OVERRIDE=1
;;
esac
done
echo $OVERRIDE
case $OPERATION in
restore)
#used to restore settings from syssettings
if [ x$Thistemplate = "xdistro_default" ]
then
mythutil --restore-settings --groupname distro_default
elif [ -d $TEMPLATES/$Thistemplate ]
then
mythutil --import-settings --infile $TEMPLATES/$Thistemplate/syssettings.xml --hostname $hostname
else
echo "couldn't find $TEMPLATES/$Thistemplate"
fi
;;
save)
#export settings from database to xml file
if [ ! -d $TEMPLATES/$Thistemplate ]
then
mkdir -p $TEMPLATES/$Thistemplate
fi
mythutil --export-settings --outfile $TEMPLATES/$Thistemplate/syssettings.xml --generic
;;
save-default)
#export settings from database to xml file
Thistemplate="system-default"
if [ ! -d $TEMPLATES/$Thistemplate ]
then
mkdir -p $TEMPLATES/$Thistemplate
fi
mythutil --export-settings --outfile $TEMPLATES/$Thistemplate/distro_default.xml --distro-default
;;
load)
if [ x$Thistemplate = "xcustom" ]
then
define_xml $5 $hostname settings $6
load_xml $gen_xml > /tmp/load_xml_custom.log
else
#this loads the distro default file, it's not active by any hosts
Thistemplate="system-default"
mythutil --import-settings --infile $TEMPLATES/$Thistemplate/distro_default.xml
fi
;;
ZMCONFIG)
define_xml ${IP_ADDRESS} $hostname settings ZoneMinderServerIP
load_xml $gen_xml
define_xml "6548" $hostname settings ZoneMinderServerPort
load_xml $gen_xml
;;
BECONFIG)
if [ $SYSTEMTYPE = "master" ]
then
define_xml ${IP_ADDRESS} $hostname settings BackendServerIP
load_xml $gen_xml
define_xml ${IP_ADDRESS} '' settings MasterServerIP
load_xml $gen_xml
fi
if [ $SYSTEMTYPE = "slave" ]
then
define_xml ${IP_ADDRESS} $hostname settings BackendServerIP
load_xml $gen_xml
fi
if [ $SYSTEMTYPE = "standalone" ]
then
define_xml "127.0.0.1" $hostname settings BackendServerIP
load_xml $gen_xml
define_xml "127.0.0.1" '' settings MasterServerIP
load_xml $gen_xml
fi
if [ $SYSTEMTYPE = "frontendonly" ]
then
define_xml '' $hostname settings BackendServerIP
load_xml $gen_xml
fi
;;
ZIP)
define_xml $ZIPCODE $hostname settings locale
load_xml $gen_xml
#$MYSQLCMD_C "delete from settings where value='locale' and hostname=\"$hostname\";"
#$MYSQLCMD_C "REPLACE INTO settings set data='$ZIPCODE' , value='locale' , hostname=\"$hostname\";"
;;
MUSICFRONT)
ALSADEVICE
define_xml $SoundDevice $hostname settings AudioOutputDevice
load_xml $gen_xml
define_xml $MixerDevice $hostname settings MixerDevice
load_xml $gen_xml
#need to reload the settings.
systemconfig.sh reloadfe
;;
MUSICMYTH)
ALSADEVICE
define_xml $SoundDevice $hostname settings MusicOutputDevice
load_xml $gen_xml
;;
uhostname)
#used when the hostname is changed.
#
#call myth_util $oldhostname $hostname
mythutil --change-hostname --new-host $newhostname --old-host $oldhostname
mythutil --import-settings --infile $TEMPLATES/$Thistemplate/syssettings.xml --hostname $newhostname
;;
USERJOBALLOW)
echo "UserJOBALLOW callremoved"
;;
ACCESSCONTROL)
LIST="Hostaccessnetwork Hostaccesshostype HostaccesshostypeSystemtype Hostaccessmisc Hostaccesssleep Hostaccessadvanced HostaccessadvancedX Hostaccesssound"
for i in $LIST
do
define_xml 1 $hostname settings $i
load_xml $gen_xml
done
LIST="HostaccesshostypeSystemtype Hostaccessuser"
for i in $LIST
do
define_xml 0 $hostname settings $i
load_xml $gen_xml
done
;;
esac
|