-
Notifications
You must be signed in to change notification settings - Fork 4
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
4 changed files
with
18 additions
and
22 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,7 +1,6 @@ | ||
--- | ||
|
||
- name: install icommands | ||
- name: Install icommands | ||
package: | ||
name: irods-icommands | ||
state: present | ||
|
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,17 +1,15 @@ | ||
--- | ||
- name: Add .irods to new user skeleton | ||
file: | ||
path: /etc/skel/.irods | ||
state: directory | ||
mode: '0755' | ||
|
||
- name: Create default irods_environment.json in skel | ||
template: | ||
src: irods_environment.json.j2 | ||
dest: /etc/skel/.irods/irods_environment.json | ||
owner: root | ||
group: root | ||
mode: '0600' | ||
force: no # don't overwrite if an environment file already exists (due to e.g. another component) | ||
|
||
- name: Add .irods to new user skeleton | ||
file: | ||
path: /etc/skel/.irods | ||
state: directory | ||
mode: '0755' | ||
|
||
- name: Create default irods_environment.json in skel | ||
template: | ||
src: irods_environment.json.j2 | ||
dest: /etc/skel/.irods/irods_environment.json | ||
owner: root | ||
group: root | ||
mode: '0600' | ||
force: false # don't overwrite if an environment file already exists (due to e.g. another component) |