Adding root password init and secure install

This commit is contained in:
Philippe Caseiro 2018-04-12 12:07:27 +02:00
parent 92080c49f2
commit 24aa0e14b1
1 changed files with 35 additions and 0 deletions

35
pretemplate/25-bdd-init Normal file
View File

@ -0,0 +1,35 @@
#!/bin/bash
#
# Initialize root password
# and secure MariaDB installation
#
function genPasswordToFile()
{
local file=${1}
pwgen -1 10 > ${file}
chmod 600 ${file}
}
WRITERFILE="/root/.bddadm"
SECURE_CMD="mysql_secure_installation"
[[ -e ${WRITERFILE} ]] && exit 0
genPasswordToFile ${WRITERFILE}
pass=$(< ${WRITERFILE})
# Run secure installation script
${SECURE_CMD} <<__EOF__
y
${pass}
${pass}
y
y
y
y
__EOF__