blob: c1cbf9259d392496fab728ee25c9afd2a78c45a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
post_install(){
echo ":: You need to initialize the MariaDB data directory prior to starting"
echo " the service. This can be done with mysql_install_db command, e.g.:"
echo " mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql"
}
|