blob: bcba9d14bc8db60203758af909dab095df70b5a8 (
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
|
#!/bin/bash
. /etc/profile
. /etc/systemconfig
shopt -s -o nounset
echo $@ >> /tmp/restore.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"
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|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
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
;;
o) OVERRIDE=1
;;
esac
done
echo $OVERRIDE
case $OPERATION in
restore)
#used to restore settings from syssettings
if [ -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
;;
load)
#this loads the distro default file, it's not active by any hosts
mythutil --import-settings --infile $TEMPLATES/$Thistemplate/distro_default.xml
;;
BECONFIG)
if [ $SYSTEMTYPE = "master" ]
then
define_xml ${IP_ADDRESS} $hostname settings BackendServerIP
load_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
;;
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
;;
USERJOBALLOW)
echo "UserJOBALLOW callremoved"
;;
ACCESSCONTROL)
LIST="Hostaccessnetwork Hostaccesshostype HostaccesshostypeSystemtype Hostaccessmisc Hostaccesssleep Hostaccessadvanced HostaccessadvancedX Hostaccesssound"
for i in $LIST
do
define_xml 1 $i settings $hostname
load_xml $gen_xml
done
LIST="HostaccesshostypeSystemtype Hostaccessuser"
for i in $LIST
do
define_xml 0 $i settings $hostname
load_xml $gen_xml
done
;;
esac
|