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

WIP: Fix ansys group ACLs #117

Draft
wants to merge 1 commit into
base: uab-prod
Choose a base branch
from
Draft
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
Use gid instead of group name for ansys s/w access control.
eesaanatluri committed Sep 21, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5cff48dae049e45db4392d9f40d945650ed3026e
2 changes: 1 addition & 1 deletion group_vars/prod
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@

#ANSYS install related
ansys_provision: true
ansys_group_name: "ANSYS_GROUP"
ansys_group_id: "ANSYS_GROUP_ID"
ansys_versions:
- '2021R1'
- "2020R2"
2 changes: 1 addition & 1 deletion roles/ood_ansys/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -20,6 +20,6 @@
path: "{{ ansys_ood_app_dir }}"
state: directory
owner: root
group: "{{ ansys_group_name }}"
group: "{{ ansys_group_id }}"
mode: '0750'
recurse: yes