Skip to content
Snippets Groups Projects
Commit 9600f725 authored by Christoph Berg's avatar Christoph Berg :satellite:
Browse files

Set /var/run/mysqld to 755 on Ubuntu jammy

parent 84149982
No related branches found
No related tags found
No related merge requests found
Pipeline #378638 failed
......@@ -12,6 +12,9 @@ MYSQL="mysql --defaults-file=/etc/mysql/debian.cnf -v mysql"
service mariadb start || service mysql start || exit 77
# work around bug in Ubuntu jammy (2022-03-02)
test -d /var/run/mysqld && chmod -v 755 /var/run/mysqld
# Create the MySQL test database and user.
echo "== creating the MySQL test database"
cat debian/tests/mysql.testschema.sql | $MYSQL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment