source: trunk/packages/sipb-xen-console-server/files/usr/sbin/sipb-xen-update-conserver @ 400

Last change on this file since 400 was 400, checked in by broder, 16 years ago

One of these days I'll learn not to hack when I should be sleeping

  • Property svn:executable set to *
File size: 690 bytes
Line 
1#!/usr/bin/python
2
3import sipb_xen_database
4import subprocess
5import os
6
7sipb_xen_database.connect('postgres://sipb-xen@sipb-xen-dev.mit.edu/sipb_xen')
8
9def live_vms():
10    p = subprocess.Popen(['xm', 'list'], stdout=subprocess.PIPE)
11    p.wait()
12    output = p.stdout.read()
13    vms = [x.split()[0][2:] for x in output.splitlines() if x.startswith('d_')]
14    return vms
15
16def reload_conserver():
17    p = subprocess.Popen(['/etc/init.d/conserver-server', 'reload'], stdout=subprocess.PIPE)
18    p.wait()
19
20if __name__ == '__main__':
21    f = open('/etc/conserver/sipb-xen-consoles.cf', 'w')
22    f.write('\n'.join('console %s {}' % vm for vm in live_vms()))
23    f.close()
24    reload_conserver()
Note: See TracBrowser for help on using the repository browser.