Skip to content

Commit

Permalink
Correcting the right path to mysql log in Fedora 19
Browse files Browse the repository at this point in the history
The mysql log is wrong in Fedora 19+ pointing to
/var/lib/mysqld.log while the correct is /var/log/mysqld.log.
This make the job fail if you're running Fedora with
mysql.
This error was inserted by
https://review.openstack.org/#/c/55827/

Change-Id: I63dd494f1ae105ad007344dea40936ab283d55a9
  • Loading branch information
Arx Cruz committed Mar 26, 2014
1 parent 4c413f3 commit 2790de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devstack-vm-gate.sh
Expand Up @@ -280,7 +280,7 @@ else
# the path are different for fedora and red hat.
if [ -f /usr/bin/yum ]; then
POSTGRES_LOG_PATH="-d /var/lib/pgsql"
MYSQL_LOG_PATH="-f /var/lib/mysqld.log"
MYSQL_LOG_PATH="-f /var/log/mysqld.log"
else
POSTGRES_LOG_PATH="-d /var/log/postgresql"
MYSQL_LOG_PATH="-d /var/log/mysql"
Expand Down

0 comments on commit 2790de9

Please sign in to comment.