You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
334 B
12 lines
334 B
- name: Setup chrony |
|
hosts: test |
|
become: true |
|
gather_facts: False |
|
pre_tasks: |
|
- name: 1. Check Python and install if not present |
|
raw: test -e /usr/bin/python || ( apt -y update && apt install -y python) |
|
changed_when: False |
|
- name: 2. Gather facts |
|
setup: # aka gather_facts |
|
roles: |
|
- chrony
|
|
|