From d3364d430146d78066fdc7cc80e866bad5d2cedd Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 28 Sep 2015 00:01:06 +0200 Subject: [PATCH] [fix] echo is annoying --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index e7c80c7..c025759 100644 --- a/scripts/install +++ b/scripts/install @@ -38,7 +38,7 @@ sed -i "s@NAMETOCHANGE@noalyss@g" ../conf/php-fpm.conf db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p') -su postgres -c "echo \"$db_pwd\n$db_pwd\n\" | createuser -P -S -R --createdb noalyss" +su postgres -c "echo -e \"$db_pwd\n$db_pwd\n\" | createuser -P -S -R --createdb noalyss" sed -i "s@DATABASE_PASSWORD@$db_pwd@g" ../conf/noalyss.conf finalphpconf=/etc/php5/fpm/pool.d/noalyss.conf