16 lines
353 B
YAML
16 lines
353 B
YAML
---
|
|
# Harmonize my systems rather than doing everything manually. :)
|
|
- hosts: localhost
|
|
connection: local
|
|
become: true
|
|
tasks:
|
|
- include: tasks/users.yml
|
|
- include: tasks/cron.yml
|
|
- include: tasks/packages.yml
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
- hosts: workstations
|
|
become: true
|
|
tasks:
|
|
- include: tasks/flatpaks.yml
|