ci/deploy.sh: Move global vars to separate file
[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 # shellcheck disable=SC1091
18 [ -n "${SSH_OPTS}" ] || source globals.sh
19
20 # ssh to cfg01
21 # shellcheck disable=SC2086,2087
22 ssh ${SSH_OPTS} "${SSH_SALT}" bash -s << LOG_COLLECT_END
23   sudo -i
24
25   echo salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
26   salt -C '*' cp.push_dir /var/log upload_path='${OPNFV_TMP_LOG}'
27
28   cd /var/cache/salt/master/minions && \
29     find */files/${OPNFV_TMP_LOG}/ | \
30       xargs tar czf \$(eval echo \~\${SUDO_USER}/${OPNFV_TMP_LOG}.tar.gz) \
31         --transform 's|/files/${OPNFV_TMP_LOG}||'
32 LOG_COLLECT_END
33
34 # shellcheck disable=SC2086
35 scp ${SSH_OPTS} "${SSH_SALT}:${OPNFV_TMP_LOG}.tar.gz" "${DEPLOY_LOG}"
36 # shellcheck disable=SC2086,2029
37 ssh ${SSH_OPTS} "${SSH_SALT}" rm -f "${OPNFV_TMP_LOG}.tar.gz"