From 2e5674256d5de591543c6052c1929d67c59a6e4b Mon Sep 17 00:00:00 2001 From: John Dewey Date: Thu, 17 Jan 2013 23:15:42 -0800 Subject: [PATCH] insecure was reversed --- recipes/server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/server.rb b/recipes/server.rb index 11f2a45..42980ba 100644 --- a/recipes/server.rb +++ b/recipes/server.rb @@ -138,7 +138,7 @@ bash "bootstrap-keystone-admin" do # here manually since the python-keystoneclient package included # in CloudArchive (for now) doesn't have it... #command "keystone bootstrap --os-token=#{bootstrap_token} --user-name=#{admin_user} --tenant-name=#{admin_tenant_name} --pass=#{admin_pass}" - insecure = node["openstack"]["auth"]["validate_certs"] ? " --insecure" : "" + insecure = node["openstack"]["auth"]["validate_certs"] ? "" : " --insecure" base_ks_cmd = "keystone#{insecure} --endpoint=#{auth_uri} --token=#{bootstrap_token}" code <<-EOF set -x