
Change the file structure to make appropriate for stand alone parser. Change-Id: I6d5259b61b1cd82949262fee4930fa66703ad036
9 lines
308 B
Bash
Executable File
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 |