You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
400 B
YAML
23 lines
400 B
YAML
---
|
|
- include_tasks: install.yml
|
|
when: ansible_os_family == 'Debian'
|
|
tags:
|
|
- install
|
|
|
|
- include_tasks: configure.yml
|
|
when: ansible_os_family == 'Debian'
|
|
tags:
|
|
- configure
|
|
|
|
- include_tasks: configure_systemd.yml
|
|
when: ansible_os_family == 'Debian'
|
|
tags:
|
|
- install
|
|
- configure_systemd
|
|
|
|
- include_tasks: update.yml
|
|
when: ansible_os_family == 'Debian'
|
|
tags:
|
|
- update
|
|
|