This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #12 - add some defaults to `mirsr.infrastructure.xnat` that currently need to be defined as group vars. These defaults use flat naming rather than nested, and are prefixed with the role name - remove `server_locale` from test inventory group vars as it is the same as the default in `mirsg.infrastructure.provision` - set defaults for the `java_mem` variable - add `ansible_cache_dir` as a playbook group var so we don't need to define it at the inventory level - there are other variables that could be made defaults in a separate PR but they are less straightforward for a couple of reasons: - they are used in multiple roles - they are used in the `mirsg.infrastructure` collection (and so should be defined as defaults in the relevant roles there)
- Loading branch information
Showing
10 changed files
with
78 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name={{ ldap.name }} | ||
name={{ xnat_ldap_name }} | ||
provider.id=ldap1 | ||
auth.method=ldap | ||
address={{ ldap.address }} | ||
userdn={{ ldap.userdn }} | ||
password={{ ldap.password }} | ||
search.base={{ ldap.base }} | ||
search.filter={{ ldap.filter }} | ||
address={{ xnat_ldap_address }} | ||
userdn={{ xnat_ldap_userdn }} | ||
password={{ xnat_ldap_password }} | ||
search.base={{ xnat_ldap_base }} | ||
search.filter={{ xnat_ldap_filter }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters