Bump to latest version

Hide password on entry
This commit is contained in:
2019-06-23 21:09:13 +02:00
parent ceba5f37c3
commit 50d3b98e0f

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
toolName="Mayan EDMS" toolName="Mayan EDMS"
toolVersion="3.2.2" toolVersion="3.2.3"
toolRoot="/opt/mayan-edms" toolRoot="/opt/mayan-edms"
toolMediaFolder="/opt/mayan-edms/media" toolMediaFolder="/opt/mayan-edms/media"
@@ -214,7 +214,7 @@ readDatabaseInfos() {
endCheckEmpty postgresUser "user name" endCheckEmpty postgresUser "user name"
fi fi
if [ "$postgresPass" == "" ] ; then if [ "$postgresPass" == "" ] ; then
read -p "Enter postgres password: " postgresPass read -s -p "Enter postgres password: " postgresPass
endCheckEmpty postgresPass "password" endCheckEmpty postgresPass "password"
fi fi
} }