summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/mv_hostype.py
blob: 4eade73cc90f730fe56382049a418577fd6e46b7 (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
# -*- coding: utf-8 -*-
import logging, mv_common
import os

config_file = "mv_config"
data_config = __import__(config_file, globals(), locals(), [])

def setup_ntp(usepool,ntpserver):
    if usepool:
        logging.info("Setting ntp server to %s",ntpserver)
        print '''sed -i "s/pool.ntp.org/$dbhost/g" ${BASE}/etc/ntp.conf'''
    else:
        logging.info("Not changing ntp configuration")

def setup_avahi(templates):
    file="/etc/avahi/services/mysql.service"
    if not os.path.exists(file):
        logging.debug("    copying in mysql.service for avahi")
        try:
            os.makedirs("/etc/avahi/services")
        except:
            logging.debug("    Couldn't create /etc/avahi/services")
        mv_common.cp_and_log(templates+"/mysql.service",file)
        cmd="sudo sv restart avahi"
        mv_common.runcmd(cmd)

def remove_avahi_service():
    file="/etc/avahi/services/mysql.service"
    if os.path.exists(file):
        logging.debug("    Removing avahi mysql.service file")
        cmd="rm -rf %s" %file
        mv_common.runcmd(cmd)
        cmd="sudo sv restart avahi"
        mv_common.runcmd(cmd)

def setup_db():
    logging.debug("    Setting up the database")

def setup_mysqlnetwork(EnableNetwork):
    logging.debug("    Setting up mysql network")
    mysqlconf = "/etc/my.cnf"
    cmd = '''grep "#skip-networking" %s ''' %mysqlconf
    status = mv_common.runcmd(cmd)

    if EnableNetwork :
        logging.debug("    Enabling mysql networking")
        if status == 0 :
            logging.debug("    Network is already enabled for mysql")
        else:
            cmd = '''sed -ie "s/^skip-networking/#skip-networking/g" %s ''' %mysqlconf
            mv_common.runcmd(cmd)
            mv_common.restart_service("mysqld")
    else:
        logging.debug("    Disabling mysql networking")
        if status == 1 :
            logging.debug("    Network is already disabled for mysql")
        else:
            cmd = '''sed -ie "s/#skip-networking/skip-networking/g" %s ''' %mysqlconf
            mv_common.runcmd(cmd)
            mv_common.restart_service("mysqld")

def setup_mysql_connection(systemconfig):
    logging.info("    Configuring database connection")
    mythip = systemconfig["mythip"]
    systemtype = systemconfig["SystemType"]
    mv_root = systemconfig["MVROOT"]
    mysqltxt = "/usr/share/mythtv/mysql.txt"
    templates = systemconfig["TEMPLATES"]
    mysqltemplate = templates + "/mysql.txt"
    dbhost = systemconfig["dbhost"]

    if systemtype == "Master_backend":
        logging.debug("    Setting dbhost to %s in systemconfig", mythip)
        dbhost = mythip
        cmd = '''sed -ei "s/^dbhost=.*$/dbhost=\"%s\"/" /etc/systemconfig ''' %dbhost
        mv_common.runcmd(cmd)
        logging.debug("    Changing dbhost in settings table for master_backend")
        cmd = '''%s/bin/restore_default_settings.sh -c BECONFIG -s master -a %s ''' %(mv_root, dbhost)
        mv_common.runcmd(cmd)

    if systemtype == "Slave_backend":
        slavehost = mythip
        logging.debug("    Changing slave in settings: %s", slavehost)
        cmd = '''%s/bin/restore_default_settings.sh -c BECONFIG -s slave  -a %s ''' %(mv_root, slavehost)
        mv_common.runcmd(cmd)

    if systemtype == "Master_backend":
        logging.debug("   changing mysql.txt file to use localhost")
        cmd = '''sed -e "s/^DBHostName=.*$/DBHostName="localhost"/" %s > %s ''' %(mysqltemplate, mysqltxt)
        mv_common.runcmd(cmd)
    else:
        logging.debug("   changing mysql.txt file to use %s", dbhost)
        cmd = '''sed -e "s/^DBHostName=.*$/DBHostName=%s/" %s > %s ''' %(dbhost, mysqltemplate, mysqltxt)
        mv_common.runcmd(cmd)

    delfile = data_config.MYTHHOME + "/.mythtv/mysql.txt"
    mv_common.remove_file(delfile)
    delfile = mv_root + "/bin/mythtv/.mythtv/mysql.txt"
    mv_common.remove_file(delfile)
    filecheck = data_config.MYTHHOME + "/templates/mysql.txt"
    if os.path.exists(filecheck):
        logging.info("    Scrapping all the previous work and using %s for mysql.txt", filecheck)
        mv_common.cp_and_log(filecheck, mysqltxt)



def setup_func_key():
    if data_config.SYSTEMTYPE == "MythVantage":
        logging.debug("    Grabbing the key for Func")
        cmd="/usr/MythVantage/bin/grabkey.py"
        mv_common.runcmd(cmd)

def setup_func_minion(dbhost):
    logging.info("    Setting up the func minion:")
    logging.debug("   certmaster is %s:",dbhost)
    #cmd='''sed -i "s/^certmaster.*$/certmaster = %s/" /etc/func/minion.conf ''' %dbhost
    #mv_common.runcmd(cmd)
    cmd='''sed -i "s/^certmaster.*$/certmaster = %s/" /etc/certmaster/minion.conf ''' %dbhost
    mv_common.runcmd(cmd)

def setup_syslog(dbhost):
    logging.debug("    Setting syslog to log to %s",dbhost)
    cmd ='''sed -i "s/^destination d_remote.*$/destination d_remote \{tcp\(\"%s\" port\(514\)\) \;\} \;/" /etc/syslog-ng.conf''' %dbhost
    return

def hostypeprint(systemconfig):
    if  mv_common.read_config(mv_common.module_config,"hostype")  == False  :
        logging.info("____Skipping of hostype, config disabled____")
        return
    logging.info("______Start of hostype config_____")
    mv_common.services(systemconfig)
    install_list=''
    remove_list=''
    daemon_list=''
    daemon_remove_list=''
    run_mysqlnetwork = False

    if systemconfig["SystemType"] == "Standalone":
        logging.info("Stand alone system being configured")
        setup_ntp(False,"null")
        remove_avahi_service()
        EnableNetwork = False
        run_mysqlnetwork = True
        if systemconfig["hostypec"]:
            setup_db()
        install_list=["mysql", "mythdb-initial", "avahi", "portmap", "nfs-utils", "local-website", "myth2ipod", "mythtv-status"]
        daemon_list=["mysql", "mythbackend", "avahi", "portmap", "nfs-utils", "netfs", "lighttpd"]
        if data_config.SYSTEMTYPE == "MythVantage":
          install_list.append('ghosd')

    elif systemconfig["SystemType"] == "Master_backend":
        logging.info("Master backend system being configured")
        setup_ntp(False,"null")
        setup_avahi(systemconfig["TEMPLATES"])
        install_list=["mysql", "mythdb-initial", "avahi", "portmap", "nfs-utils", "local-website", "myth2ipod", "mythtv-status"]
        daemon_list=["mysql", "mythbackend", "avahi", "portmap", "nfs-utils", "netfs", "lighttpd"]
        EnableNetwork = True
        run_mysqlnetwork = True
        if data_config.SYSTEMTYPE == "MythVantage":
            install_list.append('func')
            daemon_list.append('func')
            install_list.append('certmaster')
            daemon_list.append('certmaster')
            install_list.append('ghosd')

    elif systemconfig["SystemType"] == "Slave_backend":
        logging.info("Slave backend  system being configured")
        setup_ntp(True,systemconfig["dbhost"])
        remove_avahi_service()
        if systemconfig["hostypec"]:
            setup_db()
        install_list = ["portmap", "nfs-utils", "local-website", "avahi", "libmysqlclient" ]
        daemon_list = ["mythbackend", "portmap", "nfs-utils", "netfs", "lighttpd", "avahi" ]
        daemon_remove_list=('mysql')
        if data_config.SYSTEMTYPE == "MythVantage":
            install_list.remove("local-website")
            daemon_list.remove("lighttpd")
            install_list.append('func')
            daemon_list.append('funcd')
            remove_list.append("lighttpd")
            install_list.append('ghosd')


    elif systemconfig["SystemType"] == "Frontend_only":
        logging.info("Frontend only system being configured")
        setup_ntp(True,systemconfig["dbhost"])
        remove_avahi_service()
        install_list=["mysql-clients", "libmysqlclient",  "avahi", "portmap", "nfs-utils", "local-website"]
        remove_list=["mysql"]
        daemon_list=["mysql", "mythbackend", "avahi", "portmap", "nfs-utils", "netfs", "lighttpd"]
        daemon_remove_list=("mysql", "mythbackend")
        if data_config.SYSTEMTYPE == "MythVantage":
            install_list.remove("local-website")
            daemon_list.remove("lighttpd")
            install_list.append('func')
            daemon_list.append('funcd')
            remove_list.append("lighttpd")
            install_list.append('ghosd')


    for pkg in install_list:
        mv_common.pacinstall(pkg)
    for pkg in remove_list:
        mv_common.pacinstall(pkg)
    for daemon in daemon_list:
        mv_common.add_service(daemon)
    for daemon in daemon_remove_list:
        mv_common.remove_service(daemon)
    if systemconfig["RunFrontend"] == "1":
        logging.debug("   Will run the frontend")
        mv_common.add_service("frontend")
        mv_common.add_service("hal")
        if data_config.SYSTEMTYPE == "MythVantage":
            mv_common.add_service("ghosd")
    else:
        logging.debug("   Will NOT run the frontend")
        mv_common.remove_service("frontend")
        mv_common.add_service("hal")
        if data_config.SYSTEMTYPE == "MythVantage":
            mv_common.remove_service("ghosd")


    if run_mysqlnetwork:
        setup_mysqlnetwork(EnableNetwork)
    else:
        logging.debug("    Not running setup_mysql_connection")

    setup_mysql_connection(systemconfig)
    if data_config.SYSTEMTYPE == "MythVantage":
        setup_func_minion(systemconfig["dbhost"])
        setup_func_key()
        setup_syslog(systemconfig["dbhost"])
    logging.info("__End of hostype config\n")