Skip to content

Commit

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

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Jan 16, 2024
1 parent a4a8ee7 commit a608b1f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
31 changes: 19 additions & 12 deletions .README.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ <h1 class="toc-title">Contents</h1>
</ul>
</nav>
<hr>
<p>This role provides an easy way to configure systemd-journald logging
service.</p>
<p>This role provides an easy way to configure the systemd-journald
logging service.</p>
<h1 id="requirements">Requirements</h1>
<p>See below</p>
<h2 id="collection-requirements">Collection requirements</h2>
Expand All @@ -162,14 +162,19 @@ <h2 id="collection-requirements">Collection requirements</h2>
<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>Role allows system administrator to configure basic systemd-journald
settings, through following set of variables which form role's public
API.</p>
<p>The role allows system administrator to configure basic
systemd-journald settings, through the following set of variables which
form the role's public API.</p>
<ul>
<li><p><code>journald_persistent</code> - boolean variable which governs
<li><code>journald_persistent</code> - boolean variable which governs
where journald stores log file. When set to <code>true</code> the logs
will be stored on disk in <code>/var/log/journal/</code>. Defaults to
<code>false</code>, i.e. <code>volatile</code> journal storage.</p></li>
<code>false</code>, i.e. <code>volatile</code> journal storage.</li>
</ul>
<p><strong>NOTE</strong>: The following settings apply to both
<code>persistent</code> and <code>volatile</code> modes unless otherwise
indicated.</p>
<ul>
<li><p><code>journald_max_disk_size</code> - integer variable, in
megabytes, that governs how much disk space can journal files occupy
before some of them are deleted. No implicit value is configured by the
Expand All @@ -180,8 +185,8 @@ <h1 id="role-variables">Role Variables</h1>
size settings for journal. No implicit value is configured by
default.</p></li>
<li><p><code>journald_max_file_size</code> - integer variable, in
megabytes, describes maximum size of single journal file. No implicit
configuration is set up by the role.</p></li>
megabytes, describes the maximum size of single journal file. No
implicit configuration is set up by the role.</p></li>
<li><p><code>journald_per_user</code> - boolean variable, allows to
configure whether journald should keep log data separate for each user,
e.g. allowing unprivileged users to read system log from their own user
Expand All @@ -190,11 +195,13 @@ <h1 id="role-variables">Role Variables</h1>
<code>journald_persistent: true</code>.</p></li>
<li><p><code>journald_compression</code> - boolean variable instructs
journald to apply compression to journald data objects that are bigger
then default 512 bytes. Defaults to <code>true</code>.</p></li>
than default 512 bytes. Defaults to <code>true</code>.</p></li>
<li><p><code>journald_sync_interval</code> - integer variable, in
minutes, configures the time span after which journald synchronizes
minutes, configures the time span after which journald synchronizes the
currently used journal file to disk. By default role doesn't alter
currently used value.</p></li>
currently used value. This setting is only applicable for
<code>journald_persistent: true</code>. You will get a warning if set
otherwise.</p></li>
<li><p><code>journald_forward_to_syslog</code> - boolean variable,
control whether log messages received by the journal daemon shall be
forwarded to a traditional syslog daemon. Defaults to
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.2] - 2024-01-16
--------------------

### Bug Fixes

- fix: Compress applies to all storage modes, SyncInterval only to persistent (#58)

[1.2.1] - 2024-01-10
--------------------

Expand Down

0 comments on commit a608b1f

Please sign in to comment.