summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-03-21 09:24:49 -0700
committerTim Smith <tsmith@chef.io>2018-03-21 09:24:49 -0700
commitebe1583caafd9d0fe88ecca5402456d4a403c9ef (patch)
tree50b7f47191bb9d5eacd9410931c74948e3ce65d8
parent8e9ea543502781d4e0f71a9d577f639c256171b1 (diff)
downloadchef-pagefile_docs.tar.gz
Pagefile sizes are in megabytes not bytespagefile_docs
@s1mark reported this in the Windows cookbook Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_pagefile.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/windows_pagefile.rb b/lib/chef/resource/windows_pagefile.rb
index b87134171b..d91ff7bf03 100644
--- a/lib/chef/resource/windows_pagefile.rb
+++ b/lib/chef/resource/windows_pagefile.rb
@@ -39,10 +39,10 @@ class Chef
default: false
property :initial_size, Integer,
- description: "Initial size of the pagefile in bytes."
+ description: "Initial size of the pagefile in megabytes."
property :maximum_size, Integer,
- description: "Maximum size of the pagefile in bytes."
+ description: "Maximum size of the pagefile in megabytes."
action :set do
description "Configures the default pagefile, creating if it doesn't exist."