Adding root password init and secure install
This commit is contained in:
parent
92080c49f2
commit
24aa0e14b1
|
@ -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__
|
Loading…
Reference in New Issue