some sort of deploy, not really working
some mysql stuff is still needed
This commit is contained in:
parent
a12a27ef65
commit
ad69a764d8
1 changed files with 20 additions and 1 deletions
21
deploy/deploy.sh
Normal file → Executable file
21
deploy/deploy.sh
Normal file → Executable 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
|
||||
|
|
Loading…
Reference in a new issue