env-ansible/local.yml

16 lines
353 B
YAML
Raw Normal View History

---
# Harmonize my systems rather than doing everything manually. :)
- hosts: localhost
connection: local
become: true
tasks:
2020-12-21 04:52:37 -06:00
- include: tasks/users.yml
- include: tasks/cron.yml
- include: tasks/packages.yml
when: ansible_distribution == "Ubuntu"
- hosts: workstations
become: true
tasks:
2020-12-21 05:25:19 -06:00
- include: tasks/flatpaks.yml