Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(changelog): version 1.2.0 [citest skip] #54

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<style type="text/css">code{white-space: pre;}</style>
<style type="text/css">
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span { line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
Expand All @@ -70,7 +70,7 @@
}
@media print {
pre > code.sourceCode { white-space: pre-wrap; }
pre > code.sourceCode > span { text-indent: -5em; padding-left: 5em; }
pre > code.sourceCode > span { display: inline-block; text-indent: -5em; padding-left: 5em; }
}
pre.numberSource code
{ counter-reset: source-line 0; }
Expand Down Expand Up @@ -164,6 +164,8 @@ <h1 class="toc-title">Contents</h1>
id="toc-systemd_masked_units">systemd_masked_units</a></li>
<li><a href="#systemd_unmasked_units"
id="toc-systemd_unmasked_units">systemd_unmasked_units</a></li>
<li><a href="#systemd_transactional_update_reboot_ok"
id="toc-systemd_transactional_update_reboot_ok">systemd_transactional_update_reboot_ok</a></li>
</ul></li>
<li><a href="#variables-exported-by-the-role"
id="toc-variables-exported-by-the-role">Variables Exported by the
Expand Down Expand Up @@ -230,6 +232,15 @@ <h2 id="systemd_masked_units">systemd_masked_units</h2>
<p>List of unit files that shall be masked via systemd.</p>
<h2 id="systemd_unmasked_units">systemd_unmasked_units</h2>
<p>List of unit files that shall be unmasked via systemd.</p>
<h2
id="systemd_transactional_update_reboot_ok">systemd_transactional_update_reboot_ok</h2>
<p>This variable is used to handle reboots required by transactional
updates. If a transactional update requires a reboot, the role will
proceed with the reboot if systemd_transactional_update_reboot_ok is set
to true. If set to false, the role will notify the user that a reboot is
required, allowing for custom handling of the reboot requirement. If
this variable is not set, the role will fail to ensure the reboot
requirement is not overlooked.</p>
<p>Example of setting the variables:</p>
<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="fu">systemd_unit_files</span><span class="kw">:</span></span>
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

[1.2.0] - 2024-07-15
--------------------

### New Features

- feat: add support for transactional update (#53)

[1.1.5] - 2024-07-02
--------------------

Expand Down
Loading