Skip to content

Commit

Permalink
Fix irods_authentication_scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Nov 26, 2024
1 parent 312fc35 commit 44cf8de
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion roles/irods_icat/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ irods_database_name: ICAT
irods_database_port: "{{ 6432 if enable_pgbouncer else 5432 }}"
irods_database_user: irodsdb # The iRODS database username
irods_database_password: irodsdev # The password for the iRODS database username
irods_authentication_scheme: PAM # iRODS authentication method: "Native" or "PAM"
irods_authentication_scheme: pam_password # iRODS authentication method: "native" or "pam_password"
irods_zone: tempZone # The name of the iRODS Zone
irods_default_resc: irodsResc # iRODS default resource name
irods_port_range_begin: 20000
Expand Down
2 changes: 1 addition & 1 deletion roles/irods_icat/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -539,4 +539,4 @@

- name: Setup PAM
ansible.builtin.include_tasks: setup_pam.yml
when: irods_authentication_scheme == "PAM"
when: irods_authentication_scheme == "pam_password"
2 changes: 1 addition & 1 deletion roles/irods_resource/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
irods_admin: rods # iRODS admin username
irods_password: rods # iRODS admin password
irods_icat_fqdn: icat.yoda.test
irods_authentication_scheme: PAM # iRODS authentication method: "Native" or "PAM"
irods_authentication_scheme: pam_password # iRODS authentication method: "native" or "pam_password"
irods_zone: tempZone # The name of the iRODS Zone
irods_default_resc: irodsResc # iRODS default resource name
irods_port_range_begin: 20000
Expand Down
2 changes: 1 addition & 1 deletion roles/yoda_davrods/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ yoda_portal_fqdn: portal.yoda.test # Yoda Portal fully qualified domain

# iRODS configuration.
irods_icat_fqdn: icat.yoda.test
irods_authentication_scheme: PAM # iRODS authentication method: "Native" or "PAM"
irods_authentication_scheme: pam_password # iRODS authentication method: "native" or "pam_password"
irods_zone: tempZone # The name of the iRODS Zone
irods_default_resc: irodsResc # iRODS default resource name
irods_icat_port: 1247
Expand Down
2 changes: 1 addition & 1 deletion roles/yoda_portal/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ yoda_portal_wsgi_daemon_threads: 15

# iRODS configuration.
irods_default_resc: irodsResc # iRODS default resource name
irods_authentication_scheme: PAM # iRODS authentication method: "Native" or "PAM"
irods_authentication_scheme: pam_password # iRODS authentication method: "native" or "pam_password"
irods_zone: tempZone # The name of the iRODS Zone
irods_icat_fqdn: icat.yoda.test # iRODS iCAT fully qualified domain name (FQDN)
irods_icat_port: 1247
Expand Down

0 comments on commit 44cf8de

Please sign in to comment.