
Depends-On: Ifa876b3e5f89258f40055fa7ce03f5e9c601771c Change-Id: I806c76bff85210f74cd23c29835f41c174b8c960
17 lines
291 B
YAML
17 lines
291 B
YAML
---
|
|
|
|
- name: run stack.sh
|
|
become: yes
|
|
become_user: stack
|
|
command:
|
|
cmd: /bin/bash ./stack.sh
|
|
chdir: '{{ devstack_dir }}'
|
|
executable: '/bin/bash'
|
|
register: run_stack
|
|
ignore_errors: yes
|
|
|
|
|
|
- name: show stack.sh output
|
|
debug: var=run_stack.stderr_lines
|
|
failed_when: yes
|