Files
ansible_pull_tutorial/local.yml
2020-09-01 16:23:18 -04:00

15 lines
268 B
YAML

- hosts: localhost
connection: local
become: true
pre_tasks:
- name: update repositories
apt:
update_cache: yes
changed_when: False
tasks:
- include: tasks/users.yml
- include: tasks/cron.yml
- include: tasks/packages.yml