summaryrefslogtreecommitdiff
path: root/lib/chef/knife/key_create.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/knife/key_create.rb')
-rw-r--r--lib/chef/knife/key_create.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/chef/knife/key_create.rb b/lib/chef/knife/key_create.rb
index 55c4f4ef36..a9f9da97a7 100644
--- a/lib/chef/knife/key_create.rb
+++ b/lib/chef/knife/key_create.rb
@@ -51,6 +51,10 @@ EOS
@ui.edit_data(key)
end
+ def edit_hash(key)
+ @ui.edit_hash(key)
+ end
+
def display_info(input)
@ui.info(input)
end
@@ -91,7 +95,7 @@ EOS
key.expiration_date("infinity")
end
- output = edit_data(key)
+ output = edit_hash(key)
key = create_key_from_hash(output)
display_info("Created key: #{key.name}")