aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/drupal.sh.erb10
1 files changed, 9 insertions, 1 deletions
diff --git a/templates/drupal.sh.erb b/templates/drupal.sh.erb
index b966f93..26060fd 100644
--- a/templates/drupal.sh.erb
+++ b/templates/drupal.sh.erb
@@ -40,6 +40,10 @@ function drupal_deploy {
# Update all drupal instances in the host
function drupal_update {
+ if [ -z "$update" ]; then
+ update="update"
+ fi
+
for version in $SERIES; do
# Setup base folder
base="$BASE/drupal-$version"
@@ -57,7 +61,7 @@ function drupal_update {
# Ignore symlinks so sites are updated just once
if [ ! -h "$drupal" ] || [ ! -h "`readlink $drupal`" ]; then
echo "Processing $drupal..."
- drush -l $drupal update
+ drush -l $drupal $update
fi
done
@@ -154,6 +158,10 @@ elif [ "$1" == "deploy" ]; then
elif [ "$1" == "update" ]; then
shift
drupal_update $*
+elif [ "$1" == "updatedb" ]; then
+ shift
+ update="updatedb"
+ drupal_update $*
elif [ "$1" == "upgrade" ]; then
shift
drupal_upgrade $*