mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
31 lines
936 B
Bash
31 lines
936 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-mysql.sh
|
|
## Desc: Install MySQL Client
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/os.sh
|
|
|
|
# Mysql setting up root password
|
|
MYSQL_ROOT_PASSWORD=root
|
|
echo "mysql-server mysql-server/root_password password $MYSQL_ROOT_PASSWORD" | debconf-set-selections
|
|
echo "mysql-server mysql-server/root_password_again password $MYSQL_ROOT_PASSWORD" | debconf-set-selections
|
|
|
|
export ACCEPT_EULA=Y
|
|
|
|
# Install MySQL Client
|
|
apt-get install mysql-client
|
|
|
|
# Install MySQL Server
|
|
apt-get install mysql-server
|
|
|
|
# Install MySQL Dev tools
|
|
apt-get install libmysqlclient-dev
|
|
|
|
# Disable mysql.service
|
|
systemctl is-active --quiet mysql.service && systemctl stop mysql.service
|
|
systemctl disable mysql.service
|
|
|
|
invoke_tests "Databases" "MySQL"
|