ITOPS-2059 specifying to manually create the group as well so that gids can be predictable if uid is <=1000

This commit is contained in:
Geoff Jacobs
2019-08-22 13:08:20 +10:00
parent 7da4fab7b4
commit 324dfb12e2

View File

@@ -15,8 +15,14 @@
- 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 }}"
comment: "Product runtime user"
group: "{{ atl_product_user }}"
comment: "Product runtime user"