mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-22 09:27:32 -08:00
7 lines
268 B
Bash
7 lines
268 B
Bash
#!/bin/sh
|
|
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
if [ -e ./env ] ; then source ./env ; else echo "failed to source env" ; fi
|
|
exec "${basedir}/sbin/mysqld" --defaults-file="${MY_CNF}" ${MY_ARGS} 2>&1
|