forked from pool/perl-DBD-MariaDB
- Fix build tests - Add cpanspec.yml file - Enable tests to run in parallel by adding HARNESS_OPTIONS=j4 - Added missing dependencies OBS-URL: https://build.opensuse.org/request/show/782980 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-MariaDB?expand=0&rev=4
6 lines
187 B
Bash
6 lines
187 B
Bash
#!/bin/bash
|
|
|
|
/usr/bin/mysqladmin --user=root --socket=${MYSQL_UNIX_PORT} shutdown 2>&1 || \
|
|
[ ! -s "${MYSQL_PIDFILE}" ] || /bin/kill $(cat "${MYSQL_PIDFILE}") || true
|
|
rm -rf ${MYSQL_DIR}
|