-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
c582ac4
commit 0ebb30a
Showing
4 changed files
with
35 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
# - name: Check if the BOE software has been extracted | ||
# stat: | ||
# path: "{{ app_dir }}" | ||
# register: software_extracted | ||
|
||
# - name: Unpack the install files | ||
# block: | ||
- name: Unpack the BOE software | ||
ansible.builtin.unarchive: | ||
src: "{{ stage }}/{{ boe_software }}" | ||
dest: "{{ app_dir }}" | ||
remote_src: yes | ||
# when: stage is defined | ||
# when: not software_extracted.stat.exists | ||
# rescue: | ||
# - name: Remove the unpacked BOE software | ||
# file: | ||
# path: "{{ app_dir }}/BOE" | ||
# state: absent | ||
# # when: stage is defined |