From af5e539742c9344c7fd6cae7eac4ed973073cd2a Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Tue, 1 May 2012 18:27:11 -0700 Subject: [PATCH] Ensure vncproxy is enabled. Currently, the service is not ensures to be running for the all in one installation. This commit resolves the issue. --- manifests/all.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/all.pp b/manifests/all.pp index 6036c3b..03eb0c9 100644 --- a/manifests/all.pp +++ b/manifests/all.pp @@ -178,7 +178,8 @@ } class { 'nova::vncproxy': - host => $public_hostname, + enabled => true, + host => $public_hostname, } class { 'nova::compute':