File: mysql_dbms_install.sh

package info (click to toggle)
python-tosca-parser 2.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,920 kB
  • sloc: python: 11,185; sh: 144; makefile: 26
file content (9 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
#!/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