Résolution bug $title

This commit is contained in:
2018-08-21 17:43:39 +02:00
parent 3f6ce140e2
commit 441fd810a0

View File

@@ -124,7 +124,12 @@ db=$(wp db create --path=$path)
# Installer WordPress: # Installer WordPress:
# Si sh: 1: /usr/sbin/sendmail: not found => ajouter --skip-email # Si sh: 1: /usr/sbin/sendmail: not found => ajouter --skip-email
co=$(wp core install --path=$path --url=$url --title='$title' --admin_user=$admin_user --admin_password=$admin_password --admin_email=$admin_email --skip-email) #OK
#co=$(wp core install --path=$path --url=$url --title="echo $title" --admin_user=$admin_user --admin_password=$admin_password --admin_email=$admin_email --skip-email)
#Error: Too many positional arguments: WordPress Blog
#co=$(wp core install --path=$path --url=$url --title=$title --admin_user=$admin_user --admin_password=$admin_password --admin_email=$admin_email --skip-email)
#
co=$(wp core install --path=$path --url=$url --title="$title" --admin_user=$admin_user --admin_password=$admin_password --admin_email=$admin_email --skip-email)
#if [ $? != 0 ]; then echo "$co"; fi #if [ $? != 0 ]; then echo "$co"; fi
# Changement de la structure des liens pour ne conserver que le nom de l'article: # Changement de la structure des liens pour ne conserver que le nom de l'article:
@@ -150,6 +155,12 @@ ac=$(wp theme activate --path=$path $default_theme)
pl=$(wp plugin install --path=$path $defaults_plugins --activate) pl=$(wp plugin install --path=$path $defaults_plugins --activate)
#if [ $? != 0 ]; then echo -e "\033[31mErrors log:\033[0m" && echo "$pl\n"; fi #if [ $? != 0 ]; then echo -e "\033[31mErrors log:\033[0m" && echo "$pl\n"; fi
echo "title= $title"
echo "1blogname: : $(wp option get blogname --path=$path)"
#wp option update blogname $title --path=$path
# Installer les packages: # Installer les packages:
for i in $defaults_packages for i in $defaults_packages
@@ -169,5 +180,3 @@ if [ "$admin" = true ]; then
echo -e "\n\033[1mOpen wp-admin/ page in browser...\033[0m" echo -e "\n\033[1mOpen wp-admin/ page in browser...\033[0m"
wp admin --path=$path wp admin --path=$path
fi fi