0% found this document useful (0 votes)
7 views1 page

Manual BND Les

Uploaded by

marcosruizfreire
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Manual BND Les

Uploaded by

marcosruizfreire
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

---

- name: Install manual bundles, copy install bundles file


copy:
src: ../../../scripts/data/install_bundles.sh
dest: /etc/opt/diskinit/
mode: '0755'
owner: root
group: root
- name: Copy list of bundles and features file
copy:
src: ../../../scripts/data/bundles.txt
dest: /etc/opt/diskinit/
mode: '0755'
owner: root
group: root
- name: Ensure install_bundles.sh has execution permissions
shell: 'chmod +X /etc/opt/diskinit/install_bundles.sh'
- name: Run Install Script
shell: 'timeout 1800 /bin/bash /etc/opt/diskinit/install_bundles.sh'
register: install_script_output
ignore_errors: no
- name: Show install script stdout
debug:
var: install_script_output.stdout
- name: Show install script stderr
debug:
var: install_script_output.stderr
- name: Show install script return code
debug:
var: install_script_output.rc

You might also like