diff --git a/.README.html b/.README.html
index 89149f2..77f266f 100644
--- a/.README.html
+++ b/.README.html
@@ -349,7 +349,7 @@ inside a docker container (it is assumed ansible is used during build
phase) or AIX (Ansible service
module does not currently
support enabled
for AIX)
If set to false, a reload of sshd wont happen on change. +
If set to false, a reload of sshd won't happen on change.
This can help with troubleshooting. You'll need to manually reload sshd
if you want to apply the changed configuration. Defaults to the same
value as sshd_manage_service
. (Except on AIX, where
@@ -372,17 +372,17 @@ variables
sshd_service
variable.
If set to true, the the SSH port(s) will be opened in -firewall. Note, this works only on Red Hat based OS. The default is +
If set to true, the SSH port(s) will be opened in firewall. +Note, this works only on Red Hat based OS. The default is false.
NOTE: sshd_manage_firewall
is limited to adding
ports. It cannot be used for removing ports. If you want to
remove ports, you will need to use the firewall system role
directly.
If set to true, the the selinux will be configured to allow -sshd listening on the given SSH port(s). Note, this works only on Red -Hat based OS. The default is false.
+If set to true, the selinux will be configured to allow sshd +listening on the given SSH port(s). Note, this works only on Red Hat +based OS. The default is false.
NOTE: sshd_manage_selinux
is limited to adding
policy. It cannot be used for removing policy. If you want to
remove ports, you will need to use the selinux system role directly.
When this path points to a drop-in directory (like
-/etc/ssh/sshd_confg.d/00-custom.conf
), the main
+/etc/ssh/sshd_config.d/00-custom.conf
), the main
configuration file (defined with the variable
sshd_main_config_file
) is checked to contain a proper
Include
directive.
Use these variables to set the ownership and permissions for the -openssh config file that this role produces.
+openssh configuration file that this role produces.By default (auto), this list contains all the host keys that
are present in the produced configuration file. If there are none, the
@@ -642,7 +642,7 @@ class="sourceCode yaml"> tasks:
- name: Configure sshd to accept some useful environment variables
include_role:
- name: ansible-sshd
+ name: willshersystems.sshd
vars:
sshd_config_namespace: accept-env
sshd:
@@ -663,7 +663,7 @@ href="examples/">
examples/
directory.
The sshd_config.j2
and sshd_config_snippet.j2
-templates are programatically generated by the scripts in meta. New
+templates are programmatically generated by the scripts in meta. New
options should be added to the options_body
and/or
options_match
.
To regenerate the templates, from within the meta/
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 251fc09..d889540 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,19 @@
Changelog
=========
+[v0.23.2] - 2024-02-19
+--------------------
+
+### Bug Fixes
+
+- fix: Fix service files generated on EL7 and workaround the tests for containers (#276)
+
+### Other Changes
+
+- docs: Fix spelling issues + fix reported issues (#274)
+- build(deps): bump actions/checkout from 3 to 4 (#275)
+- README.md typo in config word (#277)
+
[v0.23.1] - 2024-01-25
--------------------