Files
dc-deployments-automation/roles/linux_common/tasks/main.yml
Varun Arbatti fb44bf92f1 Merged in DCD-590-fixes-broken-ci-due-to-linter (pull request #21)
DCD-590: Fixes lint issue

Approved-by: Steve Smith <ssmith@atlassian.com>
2019-09-02 01:08:52 +00:00

29 lines
661 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 group
group:
name: "{{ atl_product_user }}"
gid: "{{ atl_product_user_uid }}"
- name: Create product user
user:
name: "{{ atl_product_user }}"
uid: "{{ atl_product_user_uid }}"
group: "{{ atl_product_user }}"
comment: "Product runtime user"