diff --git a/.README.html b/.README.html index 7de69e4..4803ba6 100644 --- a/.README.html +++ b/.README.html @@ -135,31 +135,32 @@

Journald


-

This role provides an easy way to configure systemd-journald logging service.

+

Requirements

+

See below

+

Collection requirements

+

If you want to manage rpm-ostree systems with this role, +you will need to install additional collections. Please run the +following command line to install them:

+
ansible-galaxy collection install -vv -r meta/collection-requirements.yml

Role Variables

Role allows system administrator to configure basic systemd-journald settings, through following set of variables which form role's public @@ -196,15 +197,17 @@

Role Variables

currently used value.

Example Playbook

-
- hosts: all
-  vars:
-    journald_persistent: true
-    journald_max_disk_size: 2048
-    journald_per_user: true
-    journald_sync_interval: 1
-  roles:
-    - linux-system-roles.journald
+
- hosts: all
+  vars:
+    journald_persistent: true
+    journald_max_disk_size: 2048
+    journald_per_user: true
+    journald_sync_interval: 1
+  roles:
+    - linux-system-roles.journald
+

rpm-ostree

+

See README-ostree.md

License

MIT

Author Information

diff --git a/CHANGELOG.md b/CHANGELOG.md index 653c208..cd71b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Changelog ========= +[1.1.0] - 2023-11-29 +-------------------- + +### New Features + +- feat: support for ostree systems (#46) + +### Other Changes + +- build(deps): Bump actions/checkout from 3 to 4 (#38) +- ci: ensure dependabot git commit message conforms to commitlint (#41) +- ci: tox-lsr version 3.1.1 (#45) + [1.0.6] - 2023-09-08 --------------------