blob: 3746a0d8f1c15dc2c6c46ab8a0a18a65b3752666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# the mysql database files will be missing if this is the first startup after a fresh install
if [ ! -d "{{ pillar["database"]["dirs"]["var_lib_mysql"]["name"] }}/mysql" ]; then
export DEBIAN_FRONTEND=noninteractive
. /etc/profile
debconf-set-selections /etc/mysql/conf.d/debconfrc
dpkg-reconfigure mariadb-server-10.1
fi
/etc/mysql/bin/fix_permissions.sh &
/etc/init.d/xinetd start
exec /usr/sbin/mysqld ${@}
|