Small typo fixes in invirt-update-vnc-cert 0.0.5
authorEvan Broder <broder@mit.edu>
Wed, 29 Oct 2008 04:10:12 +0000 (00:10 -0400)
committerEvan Broder <broder@mit.edu>
Wed, 29 Oct 2008 04:10:12 +0000 (00:10 -0400)
svn path=/trunk/packages/invirt-vnc-client/; revision=1418

debian/changelog
debian/invirt-update-vnc-cert

index 594c059..6230edc 100644 (file)
@@ -1,3 +1,9 @@
+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
index 33db30d..8e634c0 100755 (executable)
@@ -8,21 +8,20 @@ import sys
 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)