some sort of deploy, not really working

some mysql stuff is still needed
This commit is contained in:
boyska 2016-02-09 20:21:01 -05:00
parent a12a27ef65
commit ad69a764d8

21
deploy/deploy.sh Normal file → Executable file
View file

@ -1,3 +1,22 @@
#!/bin/bash
# TODO: drush faituttecose
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