summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-11-11 17:11:44 -0800
committerTim Smith <tsmith84@gmail.com>2020-11-11 17:21:42 -0800
commit4d471fb960ab2130a856e4b36ab7ce23df5bb563 (patch)
tree7ea9a58a57ec23eb0bdf5fed58d5e2eb71b42010
parentd919b75ab7b67726cd7f28817d77f4a26b0de303 (diff)
downloadchef-4d471fb960ab2130a856e4b36ab7ce23df5bb563.tar.gz
Prevent failures generating docs
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/registry_key.rb20
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/chef/resource/registry_key.rb b/lib/chef/resource/registry_key.rb
index ac8bb170ee..6c17146fcb 100644
--- a/lib/chef/resource/registry_key.rb
+++ b/lib/chef/resource/registry_key.rb
@@ -27,8 +27,9 @@ class Chef
provides(:registry_key) { true }
description "Use the **registry_key** resource to create and delete registry keys in Microsoft Windows."
- examples <<~DOC
+ examples <<~'DOC'
**Create a registry key**
+
```ruby
registry_key 'HKEY_LOCAL_MACHINE\\path-to-key\\Policies\\System' do
values [{
@@ -41,8 +42,9 @@ class Chef
```
**Create a registry key with binary data: "\x01\x02\x03"**:
+
```ruby
- registry_key 'HKEY_CURRENT_USER\\ChefTest' do
+ registry_key 'HKEY_CURRENT_USER\ChefTest' do
values [{
:name => "test",
:type => :binary,
@@ -57,7 +59,7 @@ class Chef
In 64-bit versions of Microsoft Windows, HKEY_LOCAL_MACHINE\SOFTWARE\Example is a re-directed key. In the following examples, because HKEY_LOCAL_MACHINE\SOFTWARE\Example is a 32-bit key, the output will be “Found 32-bit key” if they are run on a version of Microsoft Windows that is 64-bit:
```ruby
- registry_key "HKEY_LOCAL_MACHINE\\SOFTWARE\\Example" do
+ registry_key 'HKEY_LOCAL_MACHINE\SOFTWARE\Example' do
architecture :i386
recursive true
action :create
@@ -65,9 +67,10 @@ class Chef
```
**Set proxy settings to be the same as those used by Chef Infra Client**
+
```ruby
proxy = URI.parse(Chef::Config[:http_proxy])
- registry_key 'HKCU\\Software\\Microsoft\\path\\to\\key\\Internet Settings' do
+ registry_key 'HKCU\Software\Microsoft\path\to\key\Internet Settings' do
values [{name: 'ProxyEnable', type: :reg_dword, data: 1},
{name: 'ProxyServer', data: "#{proxy.host}:#{proxy.port}"},
{name: 'ProxyOverride', type: :reg_string, data: <local>},
@@ -77,9 +80,10 @@ class Chef
```
**Set the name of a registry key to "(Default)"**
+
```ruby
registry_key 'Set (Default) value' do
- key 'HKLM\\Software\\Test\\Key\\Path'
+ key 'HKLM\Software\Test\Key\Path'
values [
{name: '', type: :string, data: 'test'},
]
@@ -88,8 +92,9 @@ class Chef
```
**Delete a registry key value**
+
```ruby
- registry_key 'HKEY_LOCAL_MACHINE\\SOFTWARE\\path\\to\\key\\AU' do
+ registry_key 'HKEY_LOCAL_MACHINE\SOFTWARE\path\to\key\AU' do
values [{
name: 'NoAutoRebootWithLoggedOnUsers',
type: :dword,
@@ -102,8 +107,9 @@ class Chef
Note: If data: is not specified, you get an error: Missing data key in RegistryKey values hash
**Delete a registry key and its subkeys, recursively**
+
```ruby
- registry_key 'HKCU\\SOFTWARE\\Policies\\path\\to\\key\\Themes' do
+ registry_key 'HKCU\SOFTWARE\Policies\path\to\key\Themes' do
recursive true
action :delete_key
end