heat-translator/samples/tests/data/artifacts/mysql/mysql_dbms_install.sh

9 lines
308 B
Bash
Executable File

#!/bin/bash
#This script installs mysql server
apt-get update
debconf-set-selections <<< "mysql-server mysql-server/root_password password $db_root_password"
debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $db_root_password"
apt-get -y install --fix-missing mysql-server