summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAnthony Young <sleepsonthefloor@gmail.com>2011-03-24 15:55:29 -0700
committerAnthony Young <sleepsonthefloor@gmail.com>2011-03-24 15:55:29 -0700
commitb01742ddb5bfec7e89ccc4cee17800614a0fce3c (patch)
tree14650b80a6d2669b9a2aa9c8babc5fa7d28097cf /bin
parent71bd388a6c04df68e4392dbb7354cc8b14f596fe (diff)
downloadnova-b01742ddb5bfec7e89ccc4cee17800614a0fce3c.tar.gz
nova-b01742ddb5bfec7e89ccc4cee17800614a0fce3c.tar.xz
nova-b01742ddb5bfec7e89ccc4cee17800614a0fce3c.zip
incorporate feedback from termie
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-vnc-proxy5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/nova-vnc-proxy b/bin/nova-vnc-proxy
index ea2533dc3..e7b647c00 100755
--- a/bin/nova-vnc-proxy
+++ b/bin/nova-vnc-proxy
@@ -1,5 +1,4 @@
#!/usr/bin/env python
-# pylint: disable-msg=C0103
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright 2010 United States Government as represented by the
@@ -50,7 +49,7 @@ flags.DEFINE_boolean('vnc_debug', False,
'Enable debugging features, like token bypassing')
flags.DEFINE_integer('vnc_proxy_port', 6080,
'Port that the VNC proxy should bind to')
-flags.DEFINE_string('vnc_proxy_iface', '0.0.0.0',
+flags.DEFINE_string('vnc_proxy_host', '0.0.0.0',
'Address that the VNC proxy should bind to')
flags.DEFINE_integer('vnc_token_ttl', 300,
'How many seconds before deleting tokens')
@@ -90,5 +89,5 @@ if __name__ == "__main__":
with_auth = auth.NovaAuthMiddleware(with_logging)
server = wsgi.Server()
- server.start(with_auth, FLAGS.vnc_proxy_port, host=FLAGS.vnc_proxy_iface)
+ server.start(with_auth, FLAGS.vnc_proxy_port, host=FLAGS.vnc_proxy_host)
server.wait()