source: trunk/packages/invirt-vnc-client/debian/invirt-update-vnc-cert @ 1588

Last change on this file since 1588 was 1588, checked in by broder, 15 years ago

Don't alter the original VNC JAR - make a copy instead

  • Property svn:executable set to *
File size: 994 bytes
Line 
1#!/usr/bin/python
2
3from invirt.config import structs as config
4from subprocess import Popen, call, PIPE
5import tempfile
6import os
7import sys
8import shutil
9
10def main():
11    call(['kinit', '-k', 'daemon/%s' % config.web.hostname])
12   
13    shutil.copy('/usr/share/invirt-vnc-client/VncViewer.src.jar',
14                '/usr/share/invirt-vnc-client/VncViewer.jar')
15   
16    temp_dir = tempfile.mkdtemp()
17    keystore = os.path.join(temp_dir, 'trust.store')
18    for host in config.hosts:
19        cert = Popen(['remctl', config.remote.hostname, 'web', 'vnccert', host.hostname],
20                     stdout=PIPE)
21        cert.wait()
22        call(['keytool', '-import', '-noprompt', '-alias', host.hostname,
23              '-keystore', keystore, '-storepass', 'foobar'],
24             stdin=cert.stdout)
25   
26    call(['jar', 'uf', '/usr/share/invirt-vnc-client/VncViewer.jar',
27          '-C', temp_dir, 'trust.store'])
28   
29    shutil.rmtree(temp_dir)
30
31if __name__ == '__main__':
32    sys.exit(main())
Note: See TracBrowser for help on using the repository browser.