25 lines
670 B
YAML
Executable file
25 lines
670 B
YAML
Executable file
---
|
|
- name: Soft from Ubuntu repo
|
|
ansible.builtin.include_tasks: soft_from_ubuntu_repo.yml
|
|
|
|
- name: Angie install
|
|
ansible.builtin.include_tasks: angie_install.yml
|
|
when: inventory_hostname is match("^PTAF")
|
|
|
|
- name: Need soft install
|
|
ansible.builtin.include_tasks: need_soft_install.yml
|
|
|
|
- name: Portainer run
|
|
ansible.builtin.include_tasks: portainer_install.yml
|
|
when: inventory_hostname is match("^PTAF")
|
|
|
|
- name: Zabbix install
|
|
ansible.builtin.include_tasks: zabbix_install.yml
|
|
|
|
- name: Lazydocker install
|
|
ansible.builtin.include_tasks: lazydocker_install.yml
|
|
|
|
- name: Logrotate settings
|
|
ansible.builtin.include_role:
|
|
name: logrotate_settings
|
|
...
|