Capture rabbitmq config files in CI

Change-Id: I5cfa0fb39085af2da0a17e5249272c9bdb83a49c
This commit is contained in:
Takashi Kajinami 2022-02-22 13:13:53 +09:00
parent e398f866d9
commit 9a9e288254

View File

@ -85,7 +85,10 @@ if which journalctl &> /dev/null; then
sudo journalctl --no-pager > $LOG_DIR/syslog.txt
fi
# rabbitmq logs
# rabbitmq
if [ -d /etc/rabbitmq ]; then
sudo cp -r /etc/rabbitmq $LOG_DIR/etc/
fi
if [ -d /var/log/rabbitmq ]; then
sudo cp -r /var/log/rabbitmq $LOG_DIR
fi