4563971073
Per meeting's agreement [1]. [1] https://meetings.opendev.org/meetings/kolla/2021/kolla.2021-09-22-15.01.log.html#l-71 Change-Id: If24c53b3b89eddfaf2cad39fb9e70cea0f770c96
68 lines
2.3 KiB
Plaintext
68 lines
2.3 KiB
Plaintext
#!/usr/bin/expect -f
|
|
|
|
if [catch {set timeout $env(DB_MAX_TIMEOUT)}] {set timeout 10}
|
|
spawn mariadb-secure-installation
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Enter current password for root (enter for none):' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Enter current password for root (enter for none):' prompt\n"; exit 1 }
|
|
"Enter current password for root (enter for none):"
|
|
}
|
|
send "\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Switch to unix_socket authentication [Y/n] ' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Switch to unix_socket authentication [Y/n]' prompt\n"; exit 1 }
|
|
"Switch to unix_socket authentication \\\[Y/n\\\] "
|
|
}
|
|
send "n\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Change the root password? [Y/n]' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Change the root password? [Y/n]' prompt\n"; exit 1 }
|
|
"Change the root password? \\\[Y/n\\\] "
|
|
}
|
|
send "y\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'New password:' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'New password:' prompt\n"; exit 1 }
|
|
"New password:"
|
|
}
|
|
send "$env(DB_ROOT_PASSWORD)\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Re-enter new password:' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Re-enter new password:' prompt\n"; exit 1 }
|
|
"Re-enter new password:"
|
|
}
|
|
send "$env(DB_ROOT_PASSWORD)\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Remove anonymous users?' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Remove anonymous users?' prompt\n"; exit 1 }
|
|
"Remove anonymous users?"
|
|
}
|
|
send "y\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Disallow root login remotely?' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Disallow root login remotely?' prompt\n"; exit 1 }
|
|
"Disallow root login remotely?"
|
|
}
|
|
send "n\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Remove test database and access to it?' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Remove test database and access to it?' prompt\n"; exit 1 }
|
|
"Remove test database and access to it?"
|
|
}
|
|
send "y\r"
|
|
|
|
expect {
|
|
timeout { send_user "\nFailed to get 'Reload privilege tables now?' prompt\n"; exit 1 }
|
|
eof { send_user "\nFailed to get 'Reload privilege tables now?' prompt\n"; exit 1 }
|
|
"Reload privilege tables now?"
|
|
}
|
|
send "y\r"
|
|
expect eof
|