aboutsummaryrefslogtreecommitdiff
path: root/templates/run.j2
blob: f962193eb18531cf25589b9f6aa95a97fa88519c (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
mkdir -p /run/mysqld && chown mysql:mysql /run/mysqld
datadir="$(sed -rne's/^datadir ?= ?//p' /etc/my.cnf)"
if ! [ -d "$datadir" ] ; then
  mysql_install_db --user=mysql
fi
exec chpst -u mysql:mysql mysqld