Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DSOS-2404: correct tibco user #419

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ansible/roles/ndh-app/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,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-app/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
Loading