Browse code

Remove unneed devstack early log file

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

Clark Boylan authored on 2018/01/20 03:14:45
Showing 3 changed files
... ...
@@ -6,9 +6,3 @@ Run devstack
6 6
    :default: /opt/stack
7 7
 
8 8
    The devstack base directory.
9
-
10
-.. zuul:rolevar:: devstack_early_log
11
-   :default: /opt/stack/log/devstack-early.txt
12
-
13
-   The full devstack log that includes the whatever stack.sh logs before
14
-   the LOGFILE variable in local.conf is honoured.
... ...
@@ -1,2 +1 @@
1 1
 devstack_base_dir: /opt/stack
2
-devstack_early_log: /opt/stack/logs/devstack-early.txt
... ...
@@ -1,5 +1,5 @@
1 1
 - name: Run devstack
2
-  shell: ./stack.sh 2>&1 {{ devstack_early_log }}
2
+  shell: ./stack.sh 2>&1
3 3
   args:
4 4
     chdir: "{{devstack_base_dir}}/devstack"
5 5
   become: true