https://github.com/magna-z/ansible-role-systemd-journald
Configure systemd-journald.
https://github.com/magna-z/ansible-role-systemd-journald
ansible ansible-role systemd systemd-journald
Last synced: about 1 month ago
JSON representation
Configure systemd-journald.
- Host: GitHub
- URL: https://github.com/magna-z/ansible-role-systemd-journald
- Owner: magna-z
- License: mit
- Created: 2023-01-22T19:49:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-27T17:14:26.000Z (over 1 year ago)
- Last Synced: 2025-02-17T02:22:57.386Z (4 months ago)
- Topics: ansible, ansible-role, systemd, systemd-journald
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
systemd_journald
---Configure systemd-journald.
### Links
-
-### Variables
- **`systemd_journald_configs`** *(type=[], mandatory)* - List of objects with struct `{filename: "", content: ""}`, where `filename` - filename in `/etc/systemd/journald.conf.d/` and `content` - multiline string with config file content.### Examples
```yaml
systemd_journald_configs:
- filename: storage.conf
content: |
[Journal]
Storage=persistent
Compress=yes
SystemMaxUse=10G
RuntimeMaxUse=1G
```