ghost/tasks/main.yml

17 lines
276 B
YAML
Raw Normal View History

2021-01-24 16:49:42 +01:00
---
2022-05-02 17:48:54 +02:00
- include_tasks: install.yml
when: ansible_os_family == 'Debian'
tags:
- install
2021-01-24 16:49:42 +01:00
2022-05-02 17:48:54 +02:00
- include_tasks: configure.yml
when: ansible_os_family == 'Debian'
tags:
- configure
2021-01-24 16:49:42 +01:00
2022-05-02 17:48:54 +02:00
- include_tasks: update.yml
when: ansible_os_family == 'Debian'
tags:
- update
2021-01-24 16:49:42 +01:00