ansible/log/tail.yml
2026-03-21 17:42:45 +00:00

10 lines
253 B
YAML

- hosts: localhost
tasks:
- name: Tail logs for service
ansible.builtin.command: journalctl -u {{ service }} -n {{ lines }}
register: log_output
- name: Print logs
ansible.builtin.debug:
var: log_output.stdout_lines