1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_role_websvn.git synced 2024-08-16 10:29:49 +02:00
ansible_role_websvn/tasks/packages.yml

14 lines
399 B
YAML
Raw Normal View History

2020-07-28 12:41:56 +02:00
---
- name: install required packages for websvn
become: true
2021-05-25 10:28:58 +02:00
ansible.builtin.package:
2020-07-28 12:41:56 +02:00
name: "{{ websvn__required_packages }}"
state: "{{ websvn__state }}"
2020-08-06 13:46:58 +02:00
- name: install optional OS dependencis (primary for testing)
become: true
2021-05-25 10:28:58 +02:00
ansible.builtin.package:
2020-08-06 13:46:58 +02:00
name: "{{ websvn__optional_packages }}"
state: "{{ websvn__state }}"
2020-08-06 13:55:06 +02:00
when: websvn__install_optional_packages | bool