From 77f34955400d2ace0ad5656e820f1e33157e6a58 Mon Sep 17 00:00:00 2001 From: abeudin Date: Tue, 10 Dec 2013 10:41:11 +0100 Subject: [PATCH] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 76657e3..7183b2d 100755 --- a/scripts/install +++ b/scripts/install @@ -69,7 +69,7 @@ sudo yunohost app ssowatconf # Wordpress installation echo "127.0.0.1 $domain #yunowordpress" | sudo tee -a /etc/hosts sleep 1 -curl -kL -X POST --data "?step=2&weblog_title=YunoBlog&user_name=$admin_wordpress&admin_password=$db_pwd&admin_password2=$db_pwd&admin_email=$admin_wordpress@$domain&Submit=Install+WordPress" http://$domain$path/wp-admin/install.php?step=2 #> /dev/null 2>&1 +curl -kL -X POST --data "?step=2&weblog_title=YunoBlog&user_name=$admin_wordpress&admin_password=$db_pwd&admin_password2=$db_pwd&admin_email=$admin_wordpress@$domain&Submit=Install+WordPress" http://$domain$path/wp-admin/install.php?step=2 > /dev/null 2>&1 sleep 5 mysql -u $db_user -p$db_pwd $db_user -e "select * from wp_options;" > /dev/null 2>&1 result=$?