Change rabbitmq-server log file names to not use the '@' character.

Due to problems downloading files having a '@' in their path from
logs.openstack.org, we need to rename the rabbitmq-server logs so
that they do not contain the '@' character.

Change-Id: Ic9099ef4166a76d3f7bffd44a6f15fddfcf45cd4
Related-Change: I6daaf0475b1dab6bcd56c4d838f4600271d6a8be
This commit is contained in:
Giulio Fidente 2014-11-18 13:48:57 -05:00
parent 7391209820
commit 55f7d878ce
1 changed files with 3 additions and 0 deletions

View File

@ -2,3 +2,6 @@ HOME=/var/lib/rabbitmq
LOG_BASE=/var/log/rabbitmq
MNESIA_BASE=/var/lib/rabbitmq/mnesia
PID_FILE=/var/run/rabbitmq/pid
# We need to customize log file names so that they do not have @s
RABBITMQ_LOGS=$LOG_BASE/$(hostname -s).log
RABBITMQ_SASL_LOGS=$LOG_BASE/$(hostname -s)-sasl.log