From 621b9b647991e9581a96a6e6ccb6e24fb1fb6b4b Mon Sep 17 00:00:00 2001 From: Alexis Gavoty Date: Sun, 7 Dec 2014 18:29:46 +0100 Subject: [PATCH] [enh] Do not mess with /etc/hosts --- scripts/install | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 1a5c95a..272e62a 100755 --- a/scripts/install +++ b/scripts/install @@ -72,9 +72,7 @@ sudo yunohost app setting wordpress skipped_uris -v "/" 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&language=$language&Submit=Install+WordPress" http://$domain$path/wp-admin/install.php?step=2 > /dev/null 2>&1 +curl -kL -H "Host: $domain" -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&language=$language&Submit=Install+WordPress" http://127.0.0.1$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=$? @@ -98,4 +96,3 @@ else sudo service nginx reload sudo sed -i "s@//define('FORCE_SSL_ADMIN@define('FORCE_SSL_ADMIN@g" $final_path/wp-config.php fi -sudo sed -i '/yunowordpress/d' /etc/hosts