summaryrefslogtreecommitdiff
path: root/lib/chef/resource/windows_pagefile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/windows_pagefile.rb')
-rw-r--r--lib/chef/resource/windows_pagefile.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/chef/resource/windows_pagefile.rb b/lib/chef/resource/windows_pagefile.rb
index 964aeaaf95..8249436144 100644
--- a/lib/chef/resource/windows_pagefile.rb
+++ b/lib/chef/resource/windows_pagefile.rb
@@ -27,22 +27,22 @@ class Chef
introduced "14.0"
property :path, String,
- coerce: proc { |x| x.tr("/", '\\') },
- description: "An optional property to set the pagefile name if it differs from the resource block's name.",
- name_property: true
+ coerce: proc { |x| x.tr("/", '\\') },
+ description: "An optional property to set the pagefile name if it differs from the resource block's name.",
+ name_property: true
property :system_managed, [TrueClass, FalseClass],
- description: "Configures whether the system manages the pagefile size."
+ description: "Configures whether the system manages the pagefile size."
property :automatic_managed, [TrueClass, FalseClass],
- description: "Enable automatic management of pagefile initial and maximum size. Setting this to true ignores 'initial_size' and 'maximum_size' properties.",
- default: false
+ description: "Enable automatic management of pagefile initial and maximum size. Setting this to true ignores 'initial_size' and 'maximum_size' properties.",
+ default: false
property :initial_size, Integer,
- description: "Initial size of the pagefile in megabytes."
+ description: "Initial size of the pagefile in megabytes."
property :maximum_size, Integer,
- description: "Maximum size of the pagefile in megabytes."
+ description: "Maximum size of the pagefile in megabytes."
action :set do
description "Configures the default pagefile, creating if it doesn't exist."