diff options
| author | Armin Kuster <akuster808@gmail.com> | 2017-10-26 13:25:43 -0700 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2018-03-01 16:10:35 -0800 |
| commit | 31f337c1af1223ca5e973f31c0cbc3599393e322 (patch) | |
| tree | 45c12b18ca36312b5255a91eee9ff299dc717e31 /meta-oe/recipes-dbs/mysql/mariadb/install_db | |
| parent | 036b3e794650cfc92f2f983d860ce93575198b57 (diff) | |
| download | meta-openembedded-31f337c1af1223ca5e973f31c0cbc3599393e322.tar.gz | |
mysql: move to recipes-dbs
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs/mysql/mariadb/install_db')
| -rwxr-xr-x | meta-oe/recipes-dbs/mysql/mariadb/install_db | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb/install_db b/meta-oe/recipes-dbs/mysql/mariadb/install_db new file mode 100755 index 0000000000..512a7da7ee --- /dev/null +++ b/meta-oe/recipes-dbs/mysql/mariadb/install_db | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | case "$1" in | ||
| 3 | start) | ||
| 4 | echo "Starting to install database for mariadb" | ||
| 5 | /usr/bin/mysql-systemd-start pre | ||
| 6 | echo "done." | ||
| 7 | ;; | ||
| 8 | *) | ||
| 9 | echo "Usage: /etc/init.d/install_db start" | ||
| 10 | exit 1 | ||
| 11 | esac | ||
| 12 | |||
| 13 | exit 0 | ||
