diff --git a/install_scripts/setup_frappe.sh b/install_scripts/setup_frappe.sh index bc2082d4..1061450c 100644 --- a/install_scripts/setup_frappe.sh +++ b/install_scripts/setup_frappe.sh @@ -116,7 +116,8 @@ 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 -s MSQ_PASS + read -t 1 -n 10000 discard + read -p "Enter mysql root password to set:" -s MSQ_PASS mysqladmin -u root password $MSQ_PASS fi }