Skip to content

Commit

Permalink
Merge pull request #619 from ministryofjustice/feature/DSOS-2600/tibc…
Browse files Browse the repository at this point in the history
…o_user

enable the tibco user
  • Loading branch information
antonygowland authored Mar 15, 2024
2 parents 4760cc4 + 65657b8 commit 1b91e6e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ansible/roles/ndh-ems/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
tags:
- amibuild

#- import_tasks: user.yml
# tags:
# - amibuild
- import_tasks: user.yml
tags:
- amibuild

- import_tasks: prereqs.yml
tags:
Expand Down
7 changes: 4 additions & 3 deletions ansible/roles/ndh-ems/tasks/user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
- name: create tibco group
ansible.builtin.group:
name: tibco
gid: 10002
state: present

# create tibco user
- name: create tibco user
ansible.builtin.user:
name: tibco
uid: 10002
state: present
groups: tibco
groups:
- tibco
- wheel
create_home: true
home: "/opt/tibco"
append: yes

0 comments on commit 1b91e6e

Please sign in to comment.