2023-07-23 15:44:26 +03:00
|
|
|
- name: Clear log file before write new stdout to it at this session
|
|
|
|
hosts: localhost
|
2023-07-24 20:43:08 +03:00
|
|
|
connection: local
|
2023-07-23 15:44:26 +03:00
|
|
|
tasks:
|
|
|
|
- name: echo -n > output.log
|
|
|
|
shell: echo -n > output.log
|
|
|
|
|
|
|
|
- name: Lets Go!
|
|
|
|
hosts: localhost
|
2023-07-24 20:43:08 +03:00
|
|
|
connection: local
|
2023-07-23 15:44:26 +03:00
|
|
|
tasks:
|
|
|
|
- name: Create directory for ansible custom facts
|
|
|
|
debug:
|
|
|
|
msg: "[ Python: {{ ansible_facts['python_version'] }}, OS: {{ ansible_facts['distribution'] }} {{ ansible_facts['distribution_version'] }} ({{ansible_architecture }}), Ansible: {{ ansible_version.full }}]"
|
|
|
|
|
2024-02-09 13:47:59 +03:00
|
|
|
- name: Generate Confluence images
|
2023-07-23 15:44:26 +03:00
|
|
|
hosts: localhost
|
2023-07-24 20:43:08 +03:00
|
|
|
connection: local
|
2023-07-23 15:44:26 +03:00
|
|
|
gather_facts: false
|
|
|
|
roles:
|
2024-02-09 13:47:59 +03:00
|
|
|
- atlassian.confluence
|