Skip to content

Commit

Permalink
docs(changelog): version 2.2.1 [citest skip] (#254)
Browse files Browse the repository at this point in the history
Update changelog and .README.html for version 2.2.1

Signed-off-by: Sergei Petrosian <[email protected]>
  • Loading branch information
spetrosi authored Jan 29, 2024
1 parent def28be commit 61b5acc
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -859,14 +859,9 @@ <h3 id="mssql_datadir_mode">mssql_datadir_mode</h3>
<p>The permissions to be set for the <code>mssql_datadir</code> path in
the format of the Ansible <code>file</code> module <code>mode</code>
variable.</p>
<p>Quote the mode like <code>'0700'</code> so Ansible parses it as a
<p>Quote the mode like <code>'755'</code> so Ansible parses it as a
string to avoid conflicts with octal numbers.</p>
<p>If mode is not specified and the destination directory <em>does
not</em> exist, the role uses the default umask on the system when
setting the mode. If mode is not specified and the destination directory
<em>does</em> exist, the role uses the mode of the existing
directory.</p>
<p>Default: <code>null</code></p>
<p>Default: <code>'755'</code></p>
<p>Type: <code>string</code></p>
<h3 id="mssql_logdir">mssql_logdir</h3>
<p>The path to the directory that SQL Server must use to store logs.
Expand All @@ -880,14 +875,9 @@ <h3 id="mssql_logdir_mode">mssql_logdir_mode</h3>
<p>The permissions to be set for the <code>mssql_logdir</code> path in
the format of the Ansible <code>file</code> module <code>mode</code>
variable.</p>
<p>Quote the mode like <code>'0700'</code> so Ansible parses it as a
<p>Quote the mode like <code>'755'</code> so Ansible parses it as a
string to avoid conflicts with octal numbers.</p>
<p>If mode is not specified and the destination directory <em>does
not</em> exist, the role uses the default umask on the system when
setting the mode. If mode is not specified and the destination directory
<em>does</em> exist, the role uses the mode of the existing
directory.</p>
<p>Default: <code>null</code></p>
<p>Default: <code>'755'</code></p>
<p>Type: <code>string</code></p>
<h1 id="configuring-network-parameters">Configuring Network
Parameters</h1>
Expand Down
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,56 @@
Changelog
=========

[2.2.1] - 2024-01-29
--------------------

### Bug Fixes

- fix: Ensure selinux type for used ports (#253)

Enhancement: Ensure SELinux type for used ports

Reason: Custom TCP ports must have `mssql_port_t` SELinux type

Result: When mssql_manage_selinux is set to `true`, the role configures used ports with the `mssql_port_t` SELinux type

- fix: Set default mode for data and log storage directories (#253)

Enhancement: Set default mode for data and log storage directories

Reason: `mssql_datadir_mode` and `mssql_logdir_mode` should have a default value for security

Result: `mssql_datadir_mode` and `mssql_logdir_mode` variables have a default value of `'755'`

### Other Changes

- ci: support ansible-lint and ansible-test 2.16 (#251)

Fix yamllint issue with markdownlint config

Add cleanup for tests_include_vars_from_parent.yml

Signed-off-by: Rich Megginson <[email protected]>

- ci: Use supported ansible-lint action; run ansible-lint against the collection (#252)

The old ansible-community ansible-lint is deprecated. There is a
new ansible-lint github action.

The latest Ansible repo gating tests run ansible-lint against
the collection format instead of against individual roles.
We have to convert the role to collection format before running
ansible-test.

This also requires tox-lsr 3.2.1 - bump other actions to use 3.2.1

Role developers can run this locally using
`tox -e collection,ansible-lint-collection`
See https://github.com/linux-system-roles/tox-lsr/pull/125

Signed-off-by: Rich Megginson <[email protected]>


[2.2.0] - 2023-12-11
--------------------

Expand Down

0 comments on commit 61b5acc

Please sign in to comment.