corrected the syntax for which an error occurred in the execution stack.sh

This commit is contained in:
xunconnectedx 2018-11-28 16:21:33 +06:00
parent f8191b0d8e
commit 2bbfc9e87a
3 changed files with 16 additions and 12 deletions

View File

@ -16,6 +16,7 @@
tags: [py36] tags: [py36]
- name: Creating files for python 3.6 installation - name: Creating files for python 3.6 installation
file:
template: src=install_py36.j2 dest=/home/vagrant/install_py36.bash template: src=install_py36.j2 dest=/home/vagrant/install_py36.bash
mode: 0755 mode: 0755
when: chk_py36.rc == 0 and (py36_ver.stdout | float < 3.6) when: chk_py36.rc == 0 and (py36_ver.stdout | float < 3.6)

View File

@ -24,10 +24,12 @@
shell: dnf -y update shell: dnf -y update
register: update_fed register: update_fed
failed_when: "'FAILED' in update_fed.stderr or update_fed.rc != 0" failed_when: "'FAILED' in update_fed.stderr or update_fed.rc != 0"
args:
warn: no warn: no
tags: [py36] tags: [py36]
- name: Creating files for python 3.6 installation - name: Creating files for python 3.6 installation
file:
template: src=install_pip36.j2 dest=/home/vagrant/install_pip36.bash template: src=install_pip36.j2 dest=/home/vagrant/install_pip36.bash
mode: 0755 mode: 0755
when: py36_ver.stdout | float < 3.6 when: py36_ver.stdout | float < 3.6

View File

@ -34,6 +34,7 @@
tags: [tendermint] tags: [tendermint]
- name: Creating files for key exchange - name: Creating files for key exchange
file:
template: src=start_tendermint.j2 dest=/home/vagrant/test.sh template: src=start_tendermint.j2 dest=/home/vagrant/test.sh
mode: 0755 mode: 0755
tags: [tendermint] tags: [tendermint]