mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 16:33:08 -06:00
23 lines
513 B
YAML
23 lines
513 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
|
|
|
|
- name: Create product user
|
|
user:
|
|
name: "{{ atl_product_user }}"
|
|
uid: "{{ atl_product_user_uid }}"
|
|
comment: "Product runtime user"
|