Merge branch 'master' into dist/eole/2.6.2/master
This commit is contained in:
commit
4d00207271
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
db=$(CreoleGet dbEnable non)
|
db=$(CreoleGet dbEnable non)
|
||||||
cluster=$(CreoleGet dbEnableCluster non)
|
cluster=$(CreoleGet dbEnableCluster non)
|
||||||
|
role=$(CreoleGet dbClusterPosition 'Node')
|
||||||
gstateFile="/var/lib/mysql/grastate.dat"
|
gstateFile="/var/lib/mysql/grastate.dat"
|
||||||
|
|
||||||
if [[ ${db} == "oui" ]]
|
if [[ ${db} == "oui" ]]
|
||||||
|
@ -10,7 +11,7 @@ then
|
||||||
then
|
then
|
||||||
if [[ ! -e ${gstateFile} ]]
|
if [[ ! -e ${gstateFile} ]]
|
||||||
then
|
then
|
||||||
galera_new_cluster
|
[[ ${role} == "Leader" ]] && galera_new_cluster
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Initialize root password
|
||||||
|
# and secure MariaDB installation
|
||||||
|
#
|
||||||
|
|
||||||
|
ROLE=$(CreoleGet dbClusterPosition)
|
||||||
|
SECURE_CMD="mysql_secure_installation"
|
||||||
|
PASSWORD=$(pwgen -1 10)
|
||||||
|
passwd="/usr/share/eole/scripts/mariadbPwd"
|
||||||
|
|
||||||
|
${passwd} ${PASSWORD}
|
||||||
|
|
||||||
|
# Run secure installation script
|
||||||
|
${SECURE_CMD} <<__EOF__
|
||||||
|
${oldPass}
|
||||||
|
y
|
||||||
|
n
|
||||||
|
y
|
||||||
|
y
|
||||||
|
y
|
||||||
|
y
|
||||||
|
__EOF__
|
|
@ -1,34 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# Initialize root password
|
|
||||||
# and secure MariaDB installation
|
|
||||||
#
|
|
||||||
|
|
||||||
function genPasswordToFile()
|
|
||||||
{
|
|
||||||
local file=${1}
|
|
||||||
pwgen -1 10 > ${file}
|
|
||||||
chmod 600 ${file}
|
|
||||||
}
|
|
||||||
ROLE=$(CreoleGet dbClusterPosition)
|
|
||||||
WRITERFILE="/root/.bddadm"
|
|
||||||
SECURE_CMD="mysql_secure_installation"
|
|
||||||
oldPass=""
|
|
||||||
|
|
||||||
#[[ ${ROLE} == "Node" ]] && exit 0
|
|
||||||
[[ -e ${WRITERFILE} ]] && oldPass=$(< ${WRITERFILE})
|
|
||||||
|
|
||||||
genPasswordToFile ${WRITERFILE}
|
|
||||||
pass=$(< ${WRITERFILE})
|
|
||||||
|
|
||||||
# Run secure installation script
|
|
||||||
${SECURE_CMD} <<__EOF__
|
|
||||||
${oldPass}
|
|
||||||
y
|
|
||||||
${pass}
|
|
||||||
${pass}
|
|
||||||
y
|
|
||||||
y
|
|
||||||
y
|
|
||||||
y
|
|
||||||
__EOF__
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Renew MariaDB root password
|
||||||
|
# Just like old (mysql_pwd.py)
|
||||||
|
#
|
||||||
|
cmd="mysql"
|
||||||
|
options='--defaults-file=/etc/mysql/debian.cnf'
|
||||||
|
|
||||||
|
if [[ -z ${1} ]]
|
||||||
|
then
|
||||||
|
read -s -p "New Password : " password
|
||||||
|
echo
|
||||||
|
else
|
||||||
|
password="${1}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
sql="FLUSH PRIVILEGES; ALTER USER 'root'@'localhost' IDENTIFIED BY '${password}';"
|
||||||
|
|
||||||
|
${cmd} ${options} -e "${sql}"
|
||||||
|
exit $?
|
Loading…
Reference in New Issue