+invirt-vnc-client (0.0.5) unstable; urgency=low
+
+ * Small typo fixes in invirt-update-vnc-cert
+
+ -- Evan Broder <broder@mit.edu> Wed, 29 Oct 2008 00:07:55 -0400
+
invirt-vnc-client (0.0.4) unstable; urgency=low
* Get certificates from remctl, instead of from the filesystems
import shutil
def main():
- subprocess.call(['kinit', '-k', 'daemon/%s' % config.web.hostname])
+ call(['kinit', '-k', 'daemon/%s' % config.web.hostname])
temp_dir = tempfile.mkdtemp()
keystore = os.path.join(temp_dir, 'trust.store')
for host in config.hosts:
- cert = subprocess.Popen(['remctl', config.remote.hostname, 'web',
- 'vnccert', host.hostname],
- stdout=PIPE)
+ cert = Popen(['remctl', config.remote.hostname, 'web', 'vnccert', host.hostname],
+ stdout=PIPE)
cert.wait()
- subprocess.call(['keytool', '-import', '-noprompt', '-alias',
- host.hostname, '-keystore', keystore, '-storepass',
- 'foobar'], stdin=cert.stdout)
+ call(['keytool', '-import', '-noprompt', '-alias', host.hostname,
+ '-keystore', keystore, '-storepass', 'foobar'],
+ stdin=cert.stdout)
- subprocess.call(['jar', 'uf', '/usr/share/invirt-vnc-client/VncViewer.jar',
- '-C', temp_dir, 'trust.store'])
+ call(['jar', 'uf', '/usr/share/invirt-vnc-client/VncViewer.jar',
+ '-C', temp_dir, 'trust.store'])
shutil.rmtree(temp_dir)