so that it can be run regardless of whether the rest of the build succeeds. Change-Id: I774a1c3e316222be3bff64f0b0f87b17d5a85246
6 lines
148 B
Bash
Executable File
6 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for host in $HEAD_HOST ${COMPUTE_HOSTS//,/ }; do
|
|
cp /var/log/orchestra/rsyslog/$host/syslog $WORKSPACE/logs/$host-syslog.txt
|
|
done
|