23 lines
332 B
Plaintext
23 lines
332 B
Plaintext
|
#!/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__
|