wwwd8/deploy/deploy.sh
boyska ad69a764d8 some sort of deploy, not really working
some mysql stuff is still needed
2016-02-09 20:21:01 -05:00

22 lines
501 B
Bash
Executable file

#!/bin/bash
drupal_mail=dio@ca.ne
drupal_password=porcoddio
drupal_path=/var/www/d8/
conf=$(dirname $0)/../config.sh
[[ -f "$conf" ]] && . "$conf"
set -x
if [[ ! -d ${drupal_path} ]]; then
mkdir -p "$(dirname ${drupal_path})"
cd "$(dirname ${drupal_path})"
drush dl drupal --drupal-project-rename=$(basename ${drupal_path})
fi
cd "${drupal_path}"
drush site-install --locale=it \
--account-mail ${drupal_mail} \
--account-name techbloc-admin \
--account-pass ${drupal_password} \
standard