From d5e162fe243306a2b2905538f42d6e6a4939f408 Mon Sep 17 00:00:00 2001 From: Vladimir Moravec Date: Wed, 6 Jan 2016 12:20:51 +0100 Subject: [PATCH] Remove --format flag from add command due to changes in keystone v3 --- lib/cct/commands/openstack.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cct/commands/openstack.rb b/lib/cct/commands/openstack.rb index 59feeb5..8d11115 100644 --- a/lib/cct/commands/openstack.rb +++ b/lib/cct/commands/openstack.rb @@ -86,7 +86,7 @@ def create name, options={} def add name, options={} params.clear yield params - all_params = ["add", name, "--format=shell"].concat(params.extract!(options)) + all_params = ["add", name].concat(params.extract!(options)) OpenStruct.new(shell_parse(exec!(all_params).output)) end