diff options
author | Seth Chisamore <schisamo@opscode.com> | 2013-10-17 10:08:33 -0400 |
---|---|---|
committer | Seth Chisamore <schisamo@opscode.com> | 2013-10-17 10:08:46 -0400 |
commit | 4306efdad90cadc8d8746771d7e41fb30dafc8ac (patch) | |
tree | f863f269daa2a2fd96f8d6aca0a2e78e86f021a7 | |
parent | bb96406df8b0298f8d854bf065a90b4542952030 (diff) | |
download | chef-4306efdad90cadc8d8746771d7e41fb30dafc8ac.tar.gz |
/me a pedant, fix indention level in options
-rw-r--r-- | lib/chef/knife/data_bag_create.rb | 6 | ||||
-rw-r--r-- | lib/chef/knife/data_bag_edit.rb | 6 | ||||
-rw-r--r-- | lib/chef/knife/data_bag_from_file.rb | 12 | ||||
-rw-r--r-- | lib/chef/knife/data_bag_show.rb | 6 |
4 files changed, 15 insertions, 15 deletions
diff --git a/lib/chef/knife/data_bag_create.rb b/lib/chef/knife/data_bag_create.rb index 30178ce3de..55c1c71798 100644 --- a/lib/chef/knife/data_bag_create.rb +++ b/lib/chef/knife/data_bag_create.rb @@ -32,13 +32,13 @@ class Chef category "data bag" option :secret, - :short => "-s SECRET", - :long => "--secret ", + :short => "-s SECRET", + :long => "--secret ", :description => "The secret key to use to encrypt data bag item values", :proc => Proc.new { |s| Chef::Config[:knife][:secret] = s } option :secret_file, - :long => "--secret-file SECRET_FILE", + :long => "--secret-file SECRET_FILE", :description => "A file containing the secret key to use to encrypt data bag item values", :proc => Proc.new { |sf| Chef::Config[:knife][:secret_file] = sf } diff --git a/lib/chef/knife/data_bag_edit.rb b/lib/chef/knife/data_bag_edit.rb index f3f943a31e..b3f53af919 100644 --- a/lib/chef/knife/data_bag_edit.rb +++ b/lib/chef/knife/data_bag_edit.rb @@ -32,13 +32,13 @@ class Chef category "data bag" option :secret, - :short => "-s SECRET", - :long => "--secret ", + :short => "-s SECRET", + :long => "--secret ", :description => "The secret key to use to encrypt data bag item values", :proc => Proc.new { |s| Chef::Config[:knife][:secret] = s } option :secret_file, - :long => "--secret-file SECRET_FILE", + :long => "--secret-file SECRET_FILE", :description => "A file containing the secret key to use to encrypt data bag item values", :proc => Proc.new { |sf| Chef::Config[:knife][:secret_file] = sf } diff --git a/lib/chef/knife/data_bag_from_file.rb b/lib/chef/knife/data_bag_from_file.rb index 0fc594ff3c..4c90fe6c6c 100644 --- a/lib/chef/knife/data_bag_from_file.rb +++ b/lib/chef/knife/data_bag_from_file.rb @@ -35,20 +35,20 @@ class Chef category "data bag" option :secret, - :short => "-s SECRET", - :long => "--secret ", + :short => "-s SECRET", + :long => "--secret ", :description => "The secret key to use to encrypt data bag item values", :proc => Proc.new { |s| Chef::Config[:knife][:secret] = s } option :secret_file, - :long => "--secret-file SECRET_FILE", + :long => "--secret-file SECRET_FILE", :description => "A file containing the secret key to use to encrypt data bag item values", :proc => Proc.new { |sf| Chef::Config[:knife][:secret_file] = sf } option :all, - :short => "-a", - :long => "--all", - :description => "Upload all data bags or all items for specified data bags" + :short => "-a", + :long => "--all", + :description => "Upload all data bags or all items for specified data bags" def read_secret if config[:secret] diff --git a/lib/chef/knife/data_bag_show.rb b/lib/chef/knife/data_bag_show.rb index d1f4f5f4ec..519859ca2d 100644 --- a/lib/chef/knife/data_bag_show.rb +++ b/lib/chef/knife/data_bag_show.rb @@ -32,13 +32,13 @@ class Chef category "data bag" option :secret, - :short => "-s SECRET", - :long => "--secret ", + :short => "-s SECRET", + :long => "--secret ", :description => "The secret key to use to decrypt data bag item values", :proc => Proc.new { |s| Chef::Config[:knife][:secret] = s } option :secret_file, - :long => "--secret-file SECRET_FILE", + :long => "--secret-file SECRET_FILE", :description => "A file containing the secret key to use to decrypt data bag item values", :proc => Proc.new { |sf| Chef::Config[:knife][:secret_file] = sf } |