2020-12-21 04:19:21 -06:00
|
|
|
---
|
|
|
|
# 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
|
2020-12-21 05:44:28 -06:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
|
|
|
- hosts: workstations
|
|
|
|
become: true
|
|
|
|
tasks:
|
2020-12-21 05:25:19 -06:00
|
|
|
- include: tasks/flatpaks.yml
|