An open API service indexing awesome lists of open source software.

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.

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
```