diff options
author | Tim Smith <tsmith@chef.io> | 2018-03-21 09:24:49 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-03-21 09:24:49 -0700 |
commit | ebe1583caafd9d0fe88ecca5402456d4a403c9ef (patch) | |
tree | 50b7f47191bb9d5eacd9410931c74948e3ce65d8 | |
parent | 8e9ea543502781d4e0f71a9d577f639c256171b1 (diff) | |
download | chef-ebe1583caafd9d0fe88ecca5402456d4a403c9ef.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.rb | 4 |
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." |