Skip to content

Commit 937fc05

Browse files
committed
Update changes to resource docs
Signed-off-by: Ian Maddaus <[email protected]>
1 parent 8972e4d commit 937fc05

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

data/infra/resources/chef_client_scheduled_task.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ properties_list:
6363
- property: config_directory
6464
ruby_type: String
6565
required: false
66-
default_value: "/etc/chef"
66+
default_value: C:/chef
6767
description_list:
6868
- markdown: The path of the config directory.
6969
- property: daemon_options

data/infra/resources/homebrew_tap.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,10 @@ properties_list:
5555
required: false
5656
description_list:
5757
- markdown: The URL of the tap.
58-
examples:
58+
examples: |
59+
60+
**Tap a repository**:
61+
62+
```ruby
63+
homebrew_tap 'apple/homebrew-apple'
64+
```

data/infra/resources/windows_user_privilege.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ properties_list:
4444
description_list:
4545
- markdown: An optional property to add the privilege for the specified principal. Use
4646
only with add and remove action. The principal can either be a user, group, or
47-
[special identity](https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-special-identities-groups).'
47+
[special identity](https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-special-identities-groups).
4848
- property: privilege
4949
ruby_type: Array, String
5050
required: true
@@ -106,7 +106,7 @@ examples: |
106106
```ruby
107107
windows_user_privilege 'Create Pagefile' do
108108
privilege 'SeCreatePagefilePrivilege'
109-
users ['BUILTIN\Guests']
109+
principal 'BUILTIN\\Guests'
110110
action :remove
111111
end
112112
```

0 commit comments

Comments
 (0)