summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian C. Dunn <jdunn@aquezada.com>2014-10-22 09:03:26 -0400
committerJulian C. Dunn <jdunn@aquezada.com>2014-10-22 09:03:26 -0400
commit6b478b2e1a71dbb44f8691184b8afd6b23c74690 (patch)
tree83c887ef5e307a1122bf094bd68394dd184957dd
parentd2c94417f1cf617c47bd5eed3afb8db6b1208809 (diff)
parent829bacee9e03cd99ef4893e5329d24a1d74aff88 (diff)
downloadchef-6b478b2e1a71dbb44f8691184b8afd6b23c74690.tar.gz
Merge pull request #2275 from juliandunn/chef-client-12-aix-release-notes
Added release notes for AIX service provider.
-rw-r--r--RELEASE_NOTES.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 1fdc51c6e6..186bca01e2 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -336,3 +336,9 @@ You can read more about this RFC [here](https://github.com/opscode/chef-rfc/blob
1. `--medium`: Includes normal attributes in the output and presents the output as JSON.
1. `--long`: Includes all attributes in the output and presents the output as JSON.
+
+## AIX Service Provider Support
+
+Chef 12 now supports managing services on AIX, using both the SRC (Subsystem Resource Controller) as well as the BSD-style init system. SRC is the default; the BSD-style provider can be selected using `Chef::Provider::Service::AixInit`.
+
+The SRC service provider will manage services as well as service groups. However, because SRC has no standard mechanism for starting services on system boot, `action :enable` and `action :disable` are not supported for SRC services. You may use the `execute` resource to invoke `mkitab`, for example, to add lines to `/etc/inittab` with the right parameters.