In the run devstack role we specify a path to devstack_early_log then hand it to stack.sh as a parameter which stack.sh does nothing with. While looking at a fix for this it was pointed out that these early logs make it into the job's output log now so we don't need a special file for them. Rather than handle this as a special case just let the job-output.txt log file pick up the logs for us which allows us to remove this unneeded feature. Change-Id: I9bedbe91c60257d94173b1c70676dd6c2b49dc91
7 lines
134 B
YAML
7 lines
134 B
YAML
- name: Run devstack
|
|
shell: ./stack.sh 2>&1
|
|
args:
|
|
chdir: "{{devstack_base_dir}}/devstack"
|
|
become: true
|
|
become_user: stack
|