1 | #!/usr/bin/env python
|
---|
2 | #
|
---|
3 | # vim:ts=2:et:sw=2:ai
|
---|
4 | # Wireless Leiden configuration generator, based on yaml files'
|
---|
5 | # Rick van der Zwet <info@rickvanderzwet.nl>
|
---|
6 | import cgi
|
---|
7 | import cgitb
|
---|
8 | import copy
|
---|
9 | import glob
|
---|
10 | import os
|
---|
11 | import socket
|
---|
12 | import string
|
---|
13 | import subprocess
|
---|
14 | import sys
|
---|
15 | import time
|
---|
16 | import yaml
|
---|
17 |
|
---|
18 | NODE_DIR = os.path.dirname(os.path.realpath(__file__))
|
---|
19 | __version__ = '$Id: gformat.py 8332 2010-08-12 21:50:46Z rick $'
|
---|
20 |
|
---|
21 |
|
---|
22 | files = [
|
---|
23 | 'authorized_keys',
|
---|
24 | 'dnsmasq.conf',
|
---|
25 | 'rc.conf.local',
|
---|
26 | 'resolv.conf',
|
---|
27 | 'wleiden.yaml'
|
---|
28 | ]
|
---|
29 |
|
---|
30 | # Global variables uses
|
---|
31 | OK = 10
|
---|
32 | DOWN = 20
|
---|
33 | UNKNOWN = 90
|
---|
34 |
|
---|
35 |
|
---|
36 | def get_proxylist():
|
---|
37 | """Get all available proxies proxyX sorting based on X number"""
|
---|
38 | os.chdir(NODE_DIR)
|
---|
39 | proxylist = sorted(glob.glob("proxy*"),
|
---|
40 | key=lambda name: int(''.join([c for c in name if c in string.digits])),
|
---|
41 | cmp=lambda x,y: x - y)
|
---|
42 | return proxylist
|
---|
43 |
|
---|
44 |
|
---|
45 |
|
---|
46 | def valid_addr(addr):
|
---|
47 | """ Show which address is valid in which are not """
|
---|
48 | return str(addr).startswith('172.')
|
---|
49 |
|
---|
50 |
|
---|
51 | def get_nodelist():
|
---|
52 | """ Get all available nodes - sorted """
|
---|
53 | os.chdir(NODE_DIR)
|
---|
54 | nodelist = sorted(glob.glob("CNode*"))
|
---|
55 | return nodelist
|
---|
56 |
|
---|
57 | def get_hostlist():
|
---|
58 | """ Combined hosts and proxy list"""
|
---|
59 | return get_nodelist() + get_proxylist()
|
---|
60 |
|
---|
61 |
|
---|
62 | def generate_title(nodelist):
|
---|
63 | """ Main overview page """
|
---|
64 | items = {'root' : "." }
|
---|
65 | output = """
|
---|
66 | <html>
|
---|
67 | <head>
|
---|
68 | <title>Wireless leiden Configurator - GFormat</title>
|
---|
69 | <style type="text/css">
|
---|
70 | th {background-color: #999999}
|
---|
71 | tr:nth-child(odd) {background-color: #cccccc}
|
---|
72 | tr:nth-child(even) {background-color: #ffffff}
|
---|
73 | th, td {padding: 0.1em 1em}
|
---|
74 | </style>
|
---|
75 | </head>
|
---|
76 | <body>
|
---|
77 | <center>
|
---|
78 | <form type="GET" action="%(root)s">
|
---|
79 | <input type="hidden" name="action" value="update">
|
---|
80 | <input type="submit" value="Update Configuration Database (SVN)">
|
---|
81 | </form>
|
---|
82 | <table>
|
---|
83 | <caption><h3>Wireless Leiden Configurator</h3></caption>
|
---|
84 | """ % items
|
---|
85 |
|
---|
86 | for node in nodelist:
|
---|
87 | items['node'] = node
|
---|
88 | output += '<tr><td><a href="%(root)s/%(node)s">%(node)s</a></td>' % items
|
---|
89 | for config in files:
|
---|
90 | items['config'] = config
|
---|
91 | output += '<td><a href="%(root)s/%(node)s/%(config)s">%(config)s</a></td>' % items
|
---|
92 | output += "</tr>"
|
---|
93 | output += """
|
---|
94 | </table>
|
---|
95 | <hr />
|
---|
96 | <em>%s</em>
|
---|
97 | </center>
|
---|
98 | </body>
|
---|
99 | </html>
|
---|
100 | """ % __version__
|
---|
101 |
|
---|
102 | return output
|
---|
103 |
|
---|
104 |
|
---|
105 |
|
---|
106 | def generate_node(node):
|
---|
107 | """ Print overview of all files available for node """
|
---|
108 | return "\n".join(files)
|
---|
109 |
|
---|
110 |
|
---|
111 |
|
---|
112 | def generate_header(ctag="#"):
|
---|
113 | return """\
|
---|
114 | %(ctag)s
|
---|
115 | %(ctag)s DO NOT EDIT - Automatically generated by 'gformat'
|
---|
116 | %(ctag)s Generated at %(date)s by %(host)s
|
---|
117 | %(ctag)s
|
---|
118 | """ % { 'ctag' : ctag, 'date' : time.ctime(), 'host' : socket.gethostname() }
|
---|
119 |
|
---|
120 |
|
---|
121 |
|
---|
122 | def parseaddr(s):
|
---|
123 | """ Process IPv4 CIDR notation addr to a (binary) number """
|
---|
124 | f = s.split('.')
|
---|
125 | return (long(f[0]) << 24L) + \
|
---|
126 | (long(f[1]) << 16L) + \
|
---|
127 | (long(f[2]) << 8L) + \
|
---|
128 | long(f[3])
|
---|
129 |
|
---|
130 |
|
---|
131 |
|
---|
132 | def showaddr(a):
|
---|
133 | """ Display IPv4 addr in (dotted) CIDR notation """
|
---|
134 | return "%d.%d.%d.%d" % ((a >> 24) & 0xff, (a >> 16) & 0xff, (a >> 8) & 0xff, a & 0xff)
|
---|
135 |
|
---|
136 |
|
---|
137 |
|
---|
138 | def netmask2subnet(netmask):
|
---|
139 | """ Given a 'netmask' return corresponding CIDR """
|
---|
140 | return showaddr(0xffffffff & (0xffffffff << (32 - int(netmask))))
|
---|
141 |
|
---|
142 |
|
---|
143 |
|
---|
144 | def generate_dnsmasq_conf(datadump):
|
---|
145 | """ Generate configuration file '/usr/local/etc/dnsmasq.conf' """
|
---|
146 | output = generate_header()
|
---|
147 | output += """\
|
---|
148 | # DHCP server options
|
---|
149 | dhcp-authoritative
|
---|
150 | dhcp-fqdn
|
---|
151 | domain=dhcp.%(nodename_lower)s.%(domain)s
|
---|
152 | domain-needed
|
---|
153 | expand-hosts
|
---|
154 |
|
---|
155 | # Low memory footprint
|
---|
156 | cache-size=10000
|
---|
157 | \n""" % datadump
|
---|
158 |
|
---|
159 | for iface_key in datadump['iface_keys']:
|
---|
160 | if not datadump[iface_key].has_key('comment'):
|
---|
161 | datadump[iface_key]['comment'] = None
|
---|
162 | output += "## %(interface)s - %(desc)s - %(comment)s\n" % datadump[iface_key]
|
---|
163 |
|
---|
164 | try:
|
---|
165 | (dhcp_start, dhcp_stop) = datadump[iface_key]['dhcp'].split('-')
|
---|
166 | (ip, netmask) = datadump[iface_key]['ip'].split('/')
|
---|
167 | datadump[iface_key]['subnet'] = netmask2subnet(netmask)
|
---|
168 | except (AttributeError, ValueError):
|
---|
169 | output += "# not autoritive\n\n"
|
---|
170 | continue
|
---|
171 |
|
---|
172 | dhcp_part = ".".join(ip.split('.')[0:3])
|
---|
173 | datadump[iface_key]['dhcp_start'] = dhcp_part + "." + dhcp_start
|
---|
174 | datadump[iface_key]['dhcp_stop'] = dhcp_part + "." + dhcp_stop
|
---|
175 | output += "dhcp-range=%(interface)s,%(dhcp_start)s,%(dhcp_stop)s,%(subnet)s,24h\n\n" % datadump[iface_key]
|
---|
176 |
|
---|
177 | return output
|
---|
178 |
|
---|
179 |
|
---|
180 |
|
---|
181 | def generate_rc_conf_local(datadump):
|
---|
182 | """ Generate configuration file '/etc/rc.conf.local' """
|
---|
183 | output = generate_header("#");
|
---|
184 | output += """\
|
---|
185 | hostname='%(nodetype)s%(nodename)s.%(domain)s'
|
---|
186 | location='%(location)s'
|
---|
187 | """ % datadump
|
---|
188 |
|
---|
189 | # TProxy configuration
|
---|
190 | output += "\n"
|
---|
191 | try:
|
---|
192 | if datadump['tproxy']:
|
---|
193 | output += """\
|
---|
194 | tproxy_enable='YES'
|
---|
195 | tproxy_range='%(tproxy)s'
|
---|
196 | """ % datadump
|
---|
197 | except KeyError:
|
---|
198 | output += "tproxy_enable='NO'\n"
|
---|
199 |
|
---|
200 | output += '\n'
|
---|
201 | # lo0 configuration:
|
---|
202 | # - 172.32.255.1/32 is the proxy.wleiden.net deflector
|
---|
203 | # - masterip is special as it needs to be assigned to at
|
---|
204 | # least one interface, so if not used assign to lo0
|
---|
205 | addrs_list = { 'lo0' : ["127.0.0.1/8", "172.31.255.1/32"] }
|
---|
206 | iface_map = {'lo0' : 'lo0'}
|
---|
207 |
|
---|
208 | masterip_used = False
|
---|
209 | for iface_key in datadump['iface_keys']:
|
---|
210 | if datadump[iface_key]['ip'].startswith(datadump['masterip']):
|
---|
211 | masterip_used = True
|
---|
212 | break
|
---|
213 | if not masterip_used:
|
---|
214 | addrs_list['lo0'].append(datadump['masterip'] + "/32")
|
---|
215 |
|
---|
216 | wlan_count = 0
|
---|
217 | for iface_key in datadump['iface_keys']:
|
---|
218 | ifacedump = datadump[iface_key]
|
---|
219 | interface = ifacedump['interface']
|
---|
220 | # By default no special interface mapping
|
---|
221 | iface_map[interface] = interface
|
---|
222 |
|
---|
223 | # Add interface IP to list
|
---|
224 | if addrs_list.has_key(interface):
|
---|
225 | addrs_list[interface].append(ifacedump['ip'])
|
---|
226 | else:
|
---|
227 | addrs_list[interface] = [ifacedump['ip']]
|
---|
228 |
|
---|
229 | # Alias only needs IP assignment for now, this might change if we
|
---|
230 | # are going to use virtual accesspoints
|
---|
231 | if "alias" in iface_key:
|
---|
232 | continue
|
---|
233 |
|
---|
234 | # XXX: Might want to deduct type directly from interface name
|
---|
235 | if ifacedump['type'] in ['11a', '11b', '11g', 'wireless']:
|
---|
236 | # Create wlanX interface
|
---|
237 | ifacedump['wlanif'] ="wlan%i" % wlan_count
|
---|
238 | iface_map[interface] = ifacedump['wlanif']
|
---|
239 | wlan_count += 1
|
---|
240 |
|
---|
241 | # Default to station (client) mode
|
---|
242 | ifacedump['wlanmode'] = "sta"
|
---|
243 | if ifacedump['mode'] in ['master', 'master-wds']:
|
---|
244 | ifacedump['wlanmode'] = "ap"
|
---|
245 | # Default to 802.11b mode
|
---|
246 | ifacedump['mode'] = '11b'
|
---|
247 | if ifacedump['type'] in ['11a', '11b' '11g']:
|
---|
248 | ifacedump['mode'] = ifacedump['type']
|
---|
249 |
|
---|
250 | if not ifacedump.has_key('channel'):
|
---|
251 | if ifacedump['type'] == '11a':
|
---|
252 | ifacedump['channel'] = 36
|
---|
253 | else:
|
---|
254 | ifacedump['channel'] = 1
|
---|
255 |
|
---|
256 | # Allow special hacks at the back like wds and stuff
|
---|
257 | if not ifacedump.has_key('extra'):
|
---|
258 | ifacedump['extra'] = 'regdomain ETSI country NL'
|
---|
259 |
|
---|
260 | output += "wlans_%(interface)s='%(wlanif)s'\n" % ifacedump
|
---|
261 | output += ("create_args_%(wlanif)s='wlanmode %(wlanmode)s mode " +\
|
---|
262 | "%(mode)s ssid %(ssid)s %(extra)s channel %(channel)s'\n") % ifacedump
|
---|
263 |
|
---|
264 | elif ifacedump['type'] in ['ethernet', 'eth']:
|
---|
265 | # No special config needed besides IP
|
---|
266 | pass
|
---|
267 | else:
|
---|
268 | assert False, "Unknown type " + ifacedump['type']
|
---|
269 |
|
---|
270 | # Print IP address which needs to be assigned over here
|
---|
271 | output += "\n"
|
---|
272 | for iface,addrs in sorted(addrs_list.iteritems()):
|
---|
273 | output += "ipv4_addrs_%s='%s'\n" % (iface_map[iface], " ".join(addrs))
|
---|
274 |
|
---|
275 | return output
|
---|
276 |
|
---|
277 |
|
---|
278 |
|
---|
279 | def get_yaml(item):
|
---|
280 | """ Get configuration yaml for 'item'"""
|
---|
281 | gfile = NODE_DIR + '/%s/wleiden.yaml' % item
|
---|
282 |
|
---|
283 | f = open(gfile, 'r')
|
---|
284 | datadump = yaml.load(f)
|
---|
285 | f.close()
|
---|
286 |
|
---|
287 | return datadump
|
---|
288 |
|
---|
289 |
|
---|
290 |
|
---|
291 | def get_all_configs():
|
---|
292 | """ Get dict with key 'host' with all configs present """
|
---|
293 | configs = dict()
|
---|
294 | for host in get_hostlist():
|
---|
295 | datadump = get_yaml(host)
|
---|
296 | configs[host] = datadump
|
---|
297 | return configs
|
---|
298 |
|
---|
299 |
|
---|
300 | def get_interface_keys(config):
|
---|
301 | """ Quick hack to get all interface keys, later stage convert this to a iterator """
|
---|
302 | return [elem for elem in config.keys() if (elem.startswith('iface_') and not "lo0" in elem)]
|
---|
303 |
|
---|
304 |
|
---|
305 | def get_used_ips(configs):
|
---|
306 | """ Return array of all IPs used in config files"""
|
---|
307 | ip_list = []
|
---|
308 | for config in configs:
|
---|
309 | ip_list.append(config['masterip'])
|
---|
310 | for iface_key in get_interface_keys(config):
|
---|
311 | l = config[iface_key]['ip']
|
---|
312 | addr, mask = l.split('/')
|
---|
313 | # Special case do not process
|
---|
314 | if valid_addr(addr):
|
---|
315 | ip_list.append(addr)
|
---|
316 | else:
|
---|
317 | print "## IP '%s' in '%s' not valid" % (addr, config['nodename'])
|
---|
318 | return sorted(ip_list)
|
---|
319 |
|
---|
320 |
|
---|
321 |
|
---|
322 | def write_yaml(item, datadump):
|
---|
323 | """ Write configuration yaml for 'item'"""
|
---|
324 | gfile = NODE_DIR + '/%s/wleiden.yaml' % item
|
---|
325 |
|
---|
326 | f = open(gfile, 'w')
|
---|
327 | f.write(format_wleiden_yaml(datadump))
|
---|
328 | f.close()
|
---|
329 |
|
---|
330 |
|
---|
331 |
|
---|
332 | def generate_resolv_conf(datadump):
|
---|
333 | """ Generate configuration file '/etc/resolv.conf' """
|
---|
334 | output = generate_header("#");
|
---|
335 | output += """\
|
---|
336 | search wleiden.net
|
---|
337 | # Try local (cache) first
|
---|
338 | nameserver 127.0.0.1
|
---|
339 |
|
---|
340 | # Proxies are recursive nameservers
|
---|
341 | # needs to be in resolv.conf for dnsmasq as well
|
---|
342 | """ % datadump
|
---|
343 |
|
---|
344 | for proxy in get_proxylist():
|
---|
345 | proxy_ip = get_yaml(proxy)['masterip']
|
---|
346 | output += "nameserver %-15s # %s\n" % (proxy_ip, proxy)
|
---|
347 | return output
|
---|
348 |
|
---|
349 |
|
---|
350 |
|
---|
351 | def format_yaml_value(value):
|
---|
352 | """ Get yaml value in right syntax for outputting """
|
---|
353 | if isinstance(value,str):
|
---|
354 | output = "'%s'" % value
|
---|
355 | else:
|
---|
356 | output = value
|
---|
357 | return output
|
---|
358 |
|
---|
359 |
|
---|
360 |
|
---|
361 | def format_wleiden_yaml(datadump):
|
---|
362 | """ Special formatting to ensure it is editable"""
|
---|
363 | output = "# Genesis config yaml style\n"
|
---|
364 | output += "# vim:ts=2:et:sw=2:ai\n"
|
---|
365 | output += "#\n"
|
---|
366 | iface_keys = [elem for elem in datadump.keys() if elem.startswith('iface_')]
|
---|
367 | for key in sorted(set(datadump.keys()) - set(iface_keys)):
|
---|
368 | output += "%-10s: %s\n" % (key, format_yaml_value(datadump[key]))
|
---|
369 |
|
---|
370 | output += "\n\n"
|
---|
371 |
|
---|
372 | key_order = [ 'comment', 'interface', 'ip', 'desc', 'sdesc', 'mode', 'type',
|
---|
373 | 'extra_type', 'channel', 'ssid', 'dhcp' ]
|
---|
374 |
|
---|
375 | for iface_key in sorted(iface_keys):
|
---|
376 | output += "%s:\n" % iface_key
|
---|
377 | for key in key_order + list(sorted(set(datadump[iface_key].keys()) - set(key_order))):
|
---|
378 | if datadump[iface_key].has_key(key):
|
---|
379 | output += " %-11s: %s\n" % (key, format_yaml_value(datadump[iface_key][key]))
|
---|
380 | output += "\n\n"
|
---|
381 |
|
---|
382 | return output
|
---|
383 |
|
---|
384 |
|
---|
385 |
|
---|
386 | def generate_wleiden_yaml(datadump):
|
---|
387 | """ Generate (petty) version of wleiden.yaml"""
|
---|
388 | output = generate_header("#")
|
---|
389 | output += format_wleiden_yaml(datadump)
|
---|
390 | return output
|
---|
391 |
|
---|
392 |
|
---|
393 |
|
---|
394 | def generate_config(node, config, datadump=None):
|
---|
395 | """ Print configuration file 'config' of 'node' """
|
---|
396 | output = ""
|
---|
397 | try:
|
---|
398 | # Load config file
|
---|
399 | if datadump == None:
|
---|
400 | datadump = get_yaml(node)
|
---|
401 |
|
---|
402 | # Preformat certain needed variables for formatting and push those into special object
|
---|
403 | datadump_extra = copy.deepcopy(datadump)
|
---|
404 | if not datadump_extra.has_key('domain'):
|
---|
405 | datadump_extra['domain'] = 'wleiden.net'
|
---|
406 | datadump_extra['nodename_lower'] = datadump_extra['nodename'].lower()
|
---|
407 | datadump_extra['iface_keys'] = sorted([elem for elem in datadump.keys() if elem.startswith('iface_')])
|
---|
408 |
|
---|
409 | if config == 'wleiden.yaml':
|
---|
410 | output += generate_wleiden_yaml(datadump)
|
---|
411 | elif config == 'authorized_keys':
|
---|
412 | f = open("global_keys", 'r')
|
---|
413 | output += f.read()
|
---|
414 | f.close()
|
---|
415 | elif config == 'dnsmasq.conf':
|
---|
416 | output += generate_dnsmasq_conf(datadump_extra)
|
---|
417 | elif config == 'rc.conf.local':
|
---|
418 | output += generate_rc_conf_local(datadump_extra)
|
---|
419 | elif config == 'resolv.conf':
|
---|
420 | output += generate_resolv_conf(datadump_extra)
|
---|
421 | else:
|
---|
422 | assert False, "Config not found!"
|
---|
423 | except IOError, e:
|
---|
424 | output += "[ERROR] Config file not found"
|
---|
425 | return output
|
---|
426 |
|
---|
427 |
|
---|
428 |
|
---|
429 | def process_cgi_request():
|
---|
430 | """ When calling from CGI """
|
---|
431 | # Update repository if requested
|
---|
432 | form = cgi.FieldStorage()
|
---|
433 | if form.getvalue("action") == "update":
|
---|
434 | print "Refresh: 5; url=."
|
---|
435 | print "Content-type:text/plain\r\n\r\n",
|
---|
436 | print "[INFO] Updating subverion, please wait..."
|
---|
437 | print subprocess.Popen(['svn', 'up', NODE_DIR], stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0],
|
---|
438 | print "[INFO] All done, redirecting in 5 seconds"
|
---|
439 | sys.exit(0)
|
---|
440 |
|
---|
441 |
|
---|
442 | uri = os.environ['PATH_INFO'].strip('/').split('/')
|
---|
443 | output = ""
|
---|
444 | if not uri[0]:
|
---|
445 | output += "Content-type:text/html\r\n\r\n"
|
---|
446 | output += generate_title(get_hostlist())
|
---|
447 | elif len(uri) == 1:
|
---|
448 | output += "Content-type:text/plain\r\n\r\n"
|
---|
449 | output += generate_node(uri[0])
|
---|
450 | elif len(uri) == 2:
|
---|
451 | output += "Content-type:text/plain\r\n\r\n"
|
---|
452 | output += generate_config(uri[0], uri[1])
|
---|
453 | else:
|
---|
454 | assert False, "Invalid option"
|
---|
455 | print output
|
---|
456 |
|
---|
457 |
|
---|
458 | def usage():
|
---|
459 | print """Usage: %s <standalone [port] |test [test arguments]|static>
|
---|
460 | Examples:
|
---|
461 | \tstandalone = Run configurator webserver [default port=8000]
|
---|
462 | \tstatic = Generate all config files and store on disk
|
---|
463 | \t with format ./static/%%NODE%%/%%FILE%%
|
---|
464 | \ttest CNodeRick dnsmasq.conf = Receive output of CGI script
|
---|
465 | \t for arguments CNodeRick/dnsmasq.conf
|
---|
466 | """
|
---|
467 | exit(0)
|
---|
468 |
|
---|
469 |
|
---|
470 |
|
---|
471 | def main():
|
---|
472 | """Hard working sub"""
|
---|
473 | # Allow easy hacking using the CLI
|
---|
474 | if not os.environ.has_key('PATH_INFO'):
|
---|
475 | if len(sys.argv) < 2:
|
---|
476 | usage()
|
---|
477 |
|
---|
478 | if sys.argv[1] == "standalone":
|
---|
479 | import SocketServer
|
---|
480 | import CGIHTTPServer
|
---|
481 | try:
|
---|
482 | PORT = int(sys.argv[2])
|
---|
483 | except (IndexError,ValueError):
|
---|
484 | PORT = 8000
|
---|
485 |
|
---|
486 | class MyCGIHTTPRequestHandler(CGIHTTPServer.CGIHTTPRequestHandler):
|
---|
487 | """ Serve this CGI from the root of the webserver """
|
---|
488 | def is_cgi(self):
|
---|
489 | if "favicon" in self.path:
|
---|
490 | return False
|
---|
491 |
|
---|
492 | self.cgi_info = (__file__, self.path)
|
---|
493 | self.path = ''
|
---|
494 | return True
|
---|
495 | handler = MyCGIHTTPRequestHandler
|
---|
496 | httpd = SocketServer.TCPServer(("", PORT), handler)
|
---|
497 | httpd.server_name = 'localhost'
|
---|
498 | httpd.server_port = PORT
|
---|
499 |
|
---|
500 | print "serving at port", PORT
|
---|
501 | httpd.serve_forever()
|
---|
502 | elif sys.argv[1] == "test":
|
---|
503 | os.environ['PATH_INFO'] = "/".join(sys.argv[2:])
|
---|
504 | os.environ['SCRIPT_NAME'] = __file__
|
---|
505 | process_cgi_request()
|
---|
506 | elif sys.argv[1] == "static":
|
---|
507 | items = dict()
|
---|
508 | for node in get_hostlist():
|
---|
509 | items['node'] = node
|
---|
510 | items['wdir'] = "./static/%(node)s" % items
|
---|
511 | if not os.path.isdir(items['wdir']):
|
---|
512 | os.makedirs(items['wdir'])
|
---|
513 | datadump = get_yaml(node)
|
---|
514 | for config in files:
|
---|
515 | items['config'] = config
|
---|
516 | print "## Generating %(node)s %(config)s" % items
|
---|
517 | f = open("%(wdir)s/%(config)s" % items, "w")
|
---|
518 | f.write(generate_config(node, config, datadump))
|
---|
519 | f.close()
|
---|
520 | else:
|
---|
521 | usage()
|
---|
522 | else:
|
---|
523 | cgitb.enable()
|
---|
524 | process_cgi_request()
|
---|
525 |
|
---|
526 |
|
---|
527 | if __name__ == "__main__":
|
---|
528 | main()
|
---|