-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
36 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
- name: client | create client version of irods_environment.json | ||
- name: Client | create client version of irods_environment.json | ||
ansible.builtin.include_tasks: irods_environment.yml | ||
vars: | ||
_for_server: false |
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,16 +1,15 @@ | ||
--- | ||
- name: Hosts_config | validate address type | ||
- name: Hosts config | validate address type | ||
when: _validate | bool | ||
with_items: "{{ _host_entries }}" | ||
ansible.builtin.assert: | ||
that: | ||
- item.address_type == 'local' or item.address_type == 'remote' | ||
that: item.address_type == 'local' or item.address_type == 'remote' | ||
failed_when: false | ||
|
||
- name: hosts_config | generate file | ||
- name: Hosts config | generate file | ||
ansible.builtin.include_tasks: _cfg_template.yml | ||
vars: | ||
_cfg_template_dest_file: etc/irods/hosts_config.json | ||
|
||
- name: Hosts_config | ensure known that changes were made | ||
- name: Hosts config | ensure known that changes were made | ||
ansible.builtin.meta: flush_handlers |
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,3 +1,3 @@ | ||
--- | ||
- name: main | configure server | ||
- name: Configure server | ||
ansible.builtin.import_tasks: server.yml |
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,17 +1,17 @@ | ||
--- | ||
- name: server | generate host_access_control_config.json | ||
- name: Server | generate host_access_control_config.json | ||
ansible.builtin.import_tasks: host_access_control_config.yml | ||
|
||
- name: server | generate hosts_config.json | ||
- name: Server | generate hosts_config.json | ||
ansible.builtin.import_tasks: hosts_config.yml | ||
|
||
- name: server | generate server version of irods_environment.json | ||
- name: Server | generate server version of irods_environment.json | ||
ansible.builtin.include_tasks: irods_environment.yml | ||
vars: | ||
_for_server: true | ||
|
||
- name: server | generate server_config.json | ||
- name: Server | generate server_config.json | ||
ansible.builtin.import_tasks: server_config.yml | ||
|
||
- name: server | generate service_account.config | ||
- name: Server | generate service_account.config | ||
ansible.builtin.import_tasks: service_account.yml |
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: service_account | generate file | ||
- name: Service account | generate file | ||
ansible.builtin.include_tasks: _cfg_template.yml | ||
vars: | ||
_cfg_template_dest_file: etc/irods/service_account.config | ||
|
||
- name: Service_account | ensure known that changes were made | ||
- name: Service account | ensure known that changes were made | ||
ansible.builtin.meta: flush_handlers |
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