Merge "scenario: Add AArch64 defaults"
[fuel.git] / mcp / scripts / log.sh
1 #!/bin/bash
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 ##############################################################################
9 #
10 # Collect /var/log from all cluster nodes via Salt Master
11 #
12
13 DEPLOY_LOG=$1
14 OPNFV_TMP_LOG="opnfv_fuel_logs"
15
16 [ -n "${DEPLOY_LOG}" ] || exit 0
17
18 # ssh to cfg01
19 # shellcheck disable=SC2086,2087
20 ssh ${SSH_OPTS} "${SSH_SALT}" bash -s << LOG_COLLECT_END
21   sudo -i
22
23   echo salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
24   salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
25
26   cd /var/cache/salt/master/minions && \
27     find */files/${OPNFV_TMP_LOG}/ | \
28       xargs tar czf \$(eval echo \~\${SUDO_USER}/${OPNFV_TMP_LOG}.tar.gz) \
29         --transform 's|/files/${OPNFV_TMP_LOG}||'
30 LOG_COLLECT_END
31
32 # shellcheck disable=SC2086
33 scp ${SSH_OPTS} "${SSH_SALT}:${OPNFV_TMP_LOG}.tar.gz" "${DEPLOY_LOG}"
34 # shellcheck disable=SC2086,2029
35 ssh ${SSH_OPTS} "${SSH_SALT}" rm -f "${OPNFV_TMP_LOG}.tar.gz"