Files
dc-deployments-automation/roles/linux_common/tasks/main.yml

17 lines
367 B
YAML

---
# Note: Try and limit these to packages that are distro-specific, and
# place commonly-named ones below.
- name: Install distro-specific prerequisites
include_tasks: "{{ ansible_distribution|lower }}.yml"
- name: Install common support packages
package:
name:
- jq
- tar
- curl
- unzip
- fontconfig
- python-psycopg2