summaryrefslogtreecommitdiff
path: root/lib/chef/resource/apt_package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/apt_package.rb')
-rw-r--r--lib/chef/resource/apt_package.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/chef/resource/apt_package.rb b/lib/chef/resource/apt_package.rb
index dace0add45..b94c480a29 100644
--- a/lib/chef/resource/apt_package.rb
+++ b/lib/chef/resource/apt_package.rb
@@ -28,21 +28,21 @@ class Chef
description "Use the apt_package resource to manage packages on Debian and Ubuntu platforms."
property :default_release, String,
- description: "The default release. For example: stable.",
- desired_state: false
+ description: "The default release. For example: stable.",
+ desired_state: false
property :overwrite_config_files, [TrueClass, FalseClass],
- introduced: "14.0",
- description: "Overwrite existing configuration files with those supplied by the package, if prompted by APT.",
- default: false
+ introduced: "14.0",
+ description: "Overwrite existing configuration files with those supplied by the package, if prompted by APT.",
+ default: false
property :response_file, String,
- description: "The direct path to the file used to pre-seed a package.",
- desired_state: false
+ description: "The direct path to the file used to pre-seed a package.",
+ desired_state: false
property :response_file_variables, Hash,
- description: "A Hash of response file variables in the form of {'VARIABLE' => 'VALUE'}.",
- default: lazy { Hash.new }, desired_state: false
+ description: "A Hash of response file variables in the form of {'VARIABLE' => 'VALUE'}.",
+ default: lazy { Hash.new }, desired_state: false
end
end