2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-11 15:51:03 +00:00

fix easy install script

This commit is contained in:
Pratik Vyas 2014-07-21 21:11:01 +05:30
parent 37a3e90690
commit dc99b0d4d1

View File

@ -116,7 +116,7 @@ configure_mariadb_centos() {
# Required only for CentOS, Ubuntu and Debian will show dpkg configure screen to set the password
if [ $OS == "centos" ]; then
echo Enter mysql root password to set:
read -t 1 -n 10000 discard
read -t 1 -n 10000 discard || true
read -p "Enter mysql root password to set:" -s MSQ_PASS
mysqladmin -u root password $MSQ_PASS
fi