diff options
author | Thom May <thom@chef.io> | 2017-09-11 14:08:25 +0100 |
---|---|---|
committer | Thom May <thom@chef.io> | 2017-09-11 14:08:25 +0100 |
commit | 011edc1507040914761b5efa2925e27d3b8ae030 (patch) | |
tree | 2b77f95ad16f185914a75f7ba5d5f18df5ee1767 /RELEASE_NOTES.md | |
parent | f13040d700e69df7e1772c8604b5da89473b0600 (diff) | |
download | chef-011edc1507040914761b5efa2925e27d3b8ae030.tar.gz |
Add ifconfig changes to release notestm/moar_13_4
Signed-off-by: Thom May <thom@chef.io>
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r-- | RELEASE_NOTES.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c99a804e44..25572998bf 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -10,6 +10,36 @@ Chef Client 13.4 includes RubyGems 2.6.13 to fix the following CVEs: * CVE-2017-0901 * CVE-2017-0902 +# Ifconfig provider on Red Hat now supports additional properties + +It is now possible to set `ETHTOOL_OPTS`, `BONDING_OPTS`, `MASTER` and +`SLAVE` properties on interfaces on Red Hat compatible systems. See https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s1-networkscripts-interfaces.html for further information + +### Properties + +* `ethtool\_opts`<br/> + **Ruby types:** String</br> + **Platforms:** Fedora, RHEL, Amazon Linux + A string containing arguments to ethtool. The string will be wrapped + in double quotes, so ensure that any needed quotes in the property + are surrounded by single quotes + +* `bonding\_opts`<br/> + **Ruby types:** String</br> + **Platforms:** Fedora, RHEL, Amazon Linux + A string containing configuration parameters for the bonding device. + +* `master`<br/> + **Ruby types:** String</br> + **Platforms:** Fedora, RHEL, Amazon Linux + The channel bonding interface that this interface is linked to. + +* `slave`<br/> + **Ruby types:** String</br> + **Platforms:** Fedora, RHEL, Amazon Linux + Whether the interface is controlled by the channel bonding interface + defined by `master`, above. + ## Chef Vault is now included Chef Client 13.4 now includes the `chef-vault` gem, making it easier for |