journald.yml 809 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - name: Checking for journald.conf
  3. stat: path=/etc/systemd/journald.conf
  4. register: journald_conf_file
  5. - name: Create journald persistence directories
  6. file:
  7. path: /var/log/journal
  8. state: directory
  9. - name: Update journald setup
  10. replace:
  11. dest: /etc/systemd/journald.conf
  12. regexp: '^(\#| )?{{ item.var }}=\s*.*?$'
  13. replace: ' {{ item.var }}={{ item.val }}'
  14. backup: yes
  15. with_items: "{{ journald_vars_to_replace | default([]) }}"
  16. when: journald_conf_file.stat.exists
  17. register: journald_update
  18. # I need to restart journald immediatelly, otherwise it gets into way during
  19. # further steps in ansible
  20. - name: Restart journald
  21. command: "systemctl restart systemd-journald"
  22. retries: 3
  23. delay: 5
  24. register: result
  25. until: result.rc == 0
  26. when: journald_update is changed