1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/baikal_ynh.git synced 2024-09-03 18:16:11 +02:00

Work around missing shell for www-data in jessie

This commit is contained in:
julienmalik 2015-07-29 15:25:17 +02:00
parent 5553f0fd6d
commit c2386b9555

View file

@ -18,8 +18,8 @@ sudo rm -rf /var/www/baikal
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
sudo chown -R www-data: $final_path
sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" www-data
sudo su -c "cd $final_path && php composer.phar install" www-data
sudo su -c "curl -sS https://getcomposer.org/installer | php -- --install-dir=$final_path" -s /bin/sh www-data
sudo su -c "cd $final_path && php composer.phar install" -s /bin/sh www-data
sudo rm $final_path/composer*
db_pwd=$(sudo yunohost app setting baikal mysqlpwd)