Fix typo with vncproxy_host for ::nova::compute

This commit fixes an issue where nova::compute was defaulting to
127.0.0.1:6080 even though the public_ipaddress was passed.

Change-Id: Ibb5247d715247a8a2c519a08c3af1a8ff79304a2
Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
This commit is contained in:
Paul Belanger
2013-09-25 20:23:29 -04:00
parent 0f032137a5
commit d1b6fdd241
2 changed files with 2 additions and 2 deletions

View File

@@ -358,7 +358,7 @@ class openstack::all (
enabled => $enabled,
vnc_enabled => $vnc_enabled,
vncserver_proxyclient_address => $internal_address_real,
vncproxy_host => $vncproxy_host,
vncproxy_host => $vncproxy_host_real,
force_config_drive => $force_config_drive
}

View File

@@ -355,7 +355,7 @@ describe 'openstack::all' do
:enabled => true,
:vnc_enabled => true,
:vncserver_proxyclient_address => '10.0.0.1',
:vncproxy_host => false
:vncproxy_host => '10.0.0.1'
)
end