2 ##############################################################################
3 # Copyright (c) 2017 Mirantis Inc., Enea AB and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
10 # Collect /var/log from all cluster nodes via Salt Master
13 # shellcheck disable=SC1090
14 [ -n "${SSH_OPTS}" ] || source "$(dirname "${BASH_SOURCE[0]}")/globals.sh"
16 CI_DEBUG=${CI_DEBUG:-0}; [[ "${CI_DEBUG}" =~ (false|0) ]] || set -x
18 OPNFV_TMP_LOG="opnfv_fuel_logs"
20 [ -n "${DEPLOY_LOG}" ] || exit 0
23 # shellcheck disable=SC2086,2087
24 ssh ${SSH_OPTS} "${SSH_SALT}" bash -s << LOG_COLLECT_END
27 echo salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
28 salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
30 cd /var/cache/salt/master/minions && \
31 find */files/${OPNFV_TMP_LOG}/ | \
32 xargs tar czf \$(eval echo \~\${SUDO_USER}/${OPNFV_TMP_LOG}.tar.gz) \
33 --transform 's|/files/${OPNFV_TMP_LOG}||'
36 # shellcheck disable=SC2086
37 scp ${SSH_OPTS} "${SSH_SALT}:${OPNFV_TMP_LOG}.tar.gz" "${DEPLOY_LOG}"
38 # shellcheck disable=SC2086,2029
39 ssh ${SSH_OPTS} "${SSH_SALT}" rm -f "${OPNFV_TMP_LOG}.tar.gz"