This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sergio Nemirowski <[email protected]>
- Loading branch information
sergio
authored
Mar 18, 2022
1 parent
6df9700
commit e89a6d4
Showing
7 changed files
with
42 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
|
||
- name: Download NeoFS IR binary | ||
ansible.builtin.get_url: | ||
url: "{{ neofs_ir__bin_url }}" | ||
dest: "{{ neofs_ir__bin_path }}" | ||
owner: 'root' | ||
group: 'root' | ||
mode: '0755' | ||
when: not (neofs_ir__use_compose | bool) | ||
notify: | ||
- Restart NeoFS IR service |
File renamed without changes.
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 |
---|---|---|
|
@@ -15,4 +15,3 @@ | |
until: _neofs_ir_check_result.rc == 0 | ||
retries: 10 | ||
delay: 30 | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
|
||
- name: Copy wallet | ||
ansible.builtin.copy: | ||
content: "{{ neofs_ir__wallet }}" | ||
dest: "{{ neofs_ir__wallet_path }}" | ||
owner: 'root' | ||
group: "{{ neofs_ir__group }}" | ||
mode: '0660' | ||
notify: | ||
- Restart NeoFS IR service |