Skip to content

Commit eff7ad3

Browse files
authored
Updates to resources for Client 18.1.0 (#4020)
Signed-off-by: Ian Maddaus <[email protected]> Signed-off-by: Ian Maddaus <[email protected]>
1 parent f307565 commit eff7ad3

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

data/infra/resources/launchd.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ resource_new_in: '12.8'
1111
syntax_full_code_block: |-
1212
launchd 'name' do
1313
abandon_process_group true, false
14+
associated_bundle_identifiers Hash
1415
backup Integer, false
1516
cookbook String
1617
debug true, false
@@ -70,7 +71,7 @@ syntax_full_properties_list:
7071
- "`name` is the name given to the resource block."
7172
- "`action` identifies which steps Chef Infra Client will take to bring the node into
7273
the desired state."
73-
- "`abandon_process_group`, `backup`, `cookbook`, `debug`, `disabled`, `enable_globbing`,
74+
- "`abandon_process_group`, `associated_bundle_identifiers`, `backup`, `cookbook`, `debug`, `disabled`, `enable_globbing`,
7475
`enable_transactions`, `environment_variables`, `exit_timeout`, `group`, `hard_resource_limits`,
7576
`inetd_compatibility`, `init_groups`, `keep_alive`, `label`, `launch_events`, `launch_only_once`,
7677
`ld_group`, `limit_load_from_hosts`, `limit_load_to_hosts`, `limit_load_to_session_type`,
@@ -106,6 +107,13 @@ properties_list:
106107
description_list:
107108
- markdown: If a job dies, all remaining processes with the same process ID may
108109
be kept running. Set to true to kill all remaining processes.
110+
- property: associated_bundle_identifiers
111+
new_in: 18.1
112+
ruby_type: Hash
113+
required: false
114+
description_list:
115+
- markdown: This optional key indicates which bundles the **Login Items Added by Apps**
116+
panel associates with the helper executable.
109117
- property: backup
110118
ruby_type: Integer, false
111119
required: false

data/infra/resources/rhsm_register.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ properties_list:
117117
description_list:
118118
- markdown: Sets the operating system minor release to use for subscriptions for
119119
the system. Products and updates are limited to the specified minor release
120-
version. This is used only used with the `auto_attach` option. For example,
121-
`release '6.4'` will append `--release=6.4` to the register command.
120+
version. This is used with the `auto_attach` or `activation_key` options.
121+
For example, `release '6.4'` will append `--release=6.4` to the register command.
122122
- property: satellite_host
123123
ruby_type: String
124124
required: false
@@ -154,7 +154,7 @@ properties_list:
154154
if using an activation key. If specified, password and environment properties
155155
are also required.
156156
examples: |
157-
**Register a node with RHSM*
157+
**Register a node with RHSM**
158158
159159
```ruby
160160
rhsm_register 'my-host' do

data/infra/resources/yum_repository.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ syntax_full_code_block: |-
2828
includepkgs String
2929
keepalive true, false
3030
make_cache true, false # default value: true
31+
makecache_fast true, false # default value: false
3132
max_retries String, Integer
3233
metadata_expire String
3334
metalink String
@@ -64,7 +65,7 @@ syntax_full_properties_list:
6465
the desired state."
6566
- "`baseurl`, `clean_metadata`, `cost`, `description`, `enabled`, `enablegroups`,
6667
`exclude`, `failovermethod`, `fastestmirror_enabled`, `gpgcheck`, `gpgkey`, `http_caching`,
67-
`include_config`, `includepkgs`, `keepalive`, `make_cache`, `max_retries`, `metadata_expire`,
68+
`include_config`, `includepkgs`, `keepalive`, `make_cache`, `makecache_fast`, `max_retries`, `metadata_expire`,
6869
`metalink`, `mirror_expire`, `mirrorlist`, `mirrorlist_expire`, `mode`, `options`,
6970
`password`, `priority`, `proxy`, `proxy_password`, `proxy_username`, `repo_gpgcheck`,
7071
`report_instanceid`, `reposdir`, `repositoryid`, `skip_if_unavailable`, `source`,
@@ -194,6 +195,15 @@ properties_list:
194195
- markdown: Determines whether package files downloaded by Yum stay in cache directories.
195196
By using cached data, you can carry out certain operations without a network
196197
connection.
198+
- property: makecache_fast
199+
new_in: 18.1
200+
ruby_type: true, false
201+
required: false
202+
default_value: 'false'
203+
description_list:
204+
- markdown: If `make_cache` is `true`, this uses `yum makecache fast`, which downloads
205+
only the minimum amount of data required. Useful over slower connections and when
206+
disk space is at a premium.
197207
- property: max_retries
198208
ruby_type: String, Integer
199209
required: false

0 commit comments

Comments
 (0)