Skip to content

Commit

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

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Nov 30, 2023
1 parent cede9d7 commit f79bbed
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
32 changes: 24 additions & 8 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ <h1 class="title">crypto_policies</h1>
<nav id="TOC">
<h1 class="toc-title">Contents</h1>
<ul>
<li><a href="#requirements" id="toc-requirements">Requirements</a>
<ul>
<li><a href="#collection-requirements"
id="toc-collection-requirements">Collection requirements</a></li>
</ul></li>
<li><a href="#role-variables" id="toc-role-variables">Role Variables</a>
<ul>
<li><a href="#variables-exported-by-the-role"
Expand All @@ -143,6 +148,7 @@ <h1 class="toc-title">Contents</h1>
</ul></li>
<li><a href="#example-playbook" id="toc-example-playbook">Example
Playbook</a></li>
<li><a href="#rpm-ostree" id="toc-rpm-ostree">rpm-ostree</a></li>
<li><a href="#license" id="toc-license">License</a></li>
<li><a href="#author-information" id="toc-author-information">Author
Information</a></li>
Expand All @@ -152,6 +158,14 @@ <h1 class="toc-title">Contents</h1>
<p>This Ansible role manages system-wide crypto policies.</p>
<p>This concept is well adopted since Red Hat Enterprise Linux 8 and in
Fedora.</p>
<h1 id="requirements">Requirements</h1>
<p>See below</p>
<h2 id="collection-requirements">Collection requirements</h2>
<p>If you want to manage <code>rpm-ostree</code> systems with this role,
you will need to install additional collections. Please run the
following command line to install the collection.</p>
<div class="sourceCode" id="cb1"><pre
class="sourceCode bash"><code class="sourceCode bash"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="ex">ansible-galaxy</span> collection install <span class="at">-vv</span> <span class="at">-r</span> meta/collection-requirements.yml</span></code></pre></div>
<h1 id="role-variables">Role Variables</h1>
<p>By default, this role will just report system status as described in
the following section.</p>
Expand Down Expand Up @@ -227,14 +241,16 @@ <h1 id="example-playbook">Example Playbook</h1>
<p>The following playbook configures the system to the default crypto
policy level without SHA1. The update is done without reboot (which is
recommended to do by the user afterwards).</p>
<div class="sourceCode" id="cb1"><pre
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="kw">-</span><span class="at"> </span><span class="fu">name</span><span class="kw">:</span><span class="at"> Manage crypto policies</span></span>
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">hosts</span><span class="kw">:</span><span class="at"> all</span></span>
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">roles</span><span class="kw">:</span></span>
<span id="cb1-4"><a href="#cb1-4" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">role</span><span class="kw">:</span><span class="at"> linux-system-roles.crypto_policies</span></span>
<span id="cb1-5"><a href="#cb1-5" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">vars</span><span class="kw">:</span></span>
<span id="cb1-6"><a href="#cb1-6" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_policy</span><span class="kw">:</span><span class="at"> </span><span class="st">&quot;DEFAULT:NO-SHA1&quot;</span></span>
<span id="cb1-7"><a href="#cb1-7" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_reload</span><span class="kw">:</span><span class="at"> </span><span class="ch">false</span></span></code></pre></div>
<div class="sourceCode" id="cb2"><pre
class="sourceCode yaml"><code class="sourceCode yaml"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a><span class="kw">-</span><span class="at"> </span><span class="fu">name</span><span class="kw">:</span><span class="at"> Manage crypto policies</span></span>
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">hosts</span><span class="kw">:</span><span class="at"> all</span></span>
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">roles</span><span class="kw">:</span></span>
<span id="cb2-4"><a href="#cb2-4" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">role</span><span class="kw">:</span><span class="at"> linux-system-roles.crypto_policies</span></span>
<span id="cb2-5"><a href="#cb2-5" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">vars</span><span class="kw">:</span></span>
<span id="cb2-6"><a href="#cb2-6" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_policy</span><span class="kw">:</span><span class="at"> </span><span class="st">&quot;DEFAULT:NO-SHA1&quot;</span></span>
<span id="cb2-7"><a href="#cb2-7" aria-hidden="true" tabindex="-1"></a><span class="at"> </span><span class="fu">crypto_policies_reload</span><span class="kw">:</span><span class="at"> </span><span class="ch">false</span></span></code></pre></div>
<h1 id="rpm-ostree">rpm-ostree</h1>
<p>See README-ostree.md</p>
<h1 id="license">License</h1>
<p>MIT, see the file LICENSE for more information.</p>
<h1 id="author-information">Author Information</h1>
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

[1.3.0] - 2023-11-29
--------------------

### New Features

- feat: support for ostree systems (#99)

### Other Changes

- Bump actions/checkout from 3 to 4 (#90)
- ci: ensure dependabot git commit message conforms to commitlint (#93)
- ci: tox-lsr version 3.1.1 (#97)

[1.2.12] - 2023-09-08
--------------------

Expand Down

0 comments on commit f79bbed

Please sign in to comment.