Skip to content
Snippets Groups Projects
Commit 4aaa5419 authored by bgm's avatar bgm
Browse files

Do not send the drupal welcome e-mail on site-install

parent 2367822f
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,10 @@ if [ -d "sites/$SITE_URL" ]; then
chmod u+w "sites/$SITE_URL"
rm -rf "sites/$SITE_URL"
fi
drush site-install -y \
# NB: Avoid sending e-mails for the site installation
# On hosts without sendmail (ex: demo sites), this causes the installation to fail.
php -d sendmail_path=`which true` `which drush` site-install -y \
--db-url="mysql://${DB_USER}:${DB_PASS}@${DB_HOST}/${DB_NAME}" \
--account-name="$ADMIN_USER" \
--account-pass="$ADMIN_PASS" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment