1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00

[fix] script is runned by admin

This commit is contained in:
Laurent Peuch 2015-09-28 00:15:35 +02:00
parent a61ba2c453
commit dd446216b2

View file

@ -38,8 +38,8 @@ 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 "createuser -S -R --createdb noalyss"
su postgres -c "psql -c \"ALTER USER noalyss with PASSWORD \'$db_pwd\';\""
sudo -u postgres createuser -S -R --createdb noalyss
sudo -u postgres psql -c "ALTER USER noalyss with PASSWORD '$db_pwd';"
sed -i "s@DATABASE_PASSWORD@$db_pwd@g" ../conf/noalyss.conf
finalphpconf=/etc/php5/fpm/pool.d/noalyss.conf