From e86d178f388fce27337fc434a4abd2245634e963 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 5 Mar 2010 10:35:10 -0300 Subject: Adding action 'updatedb' into drupal script --- templates/drupal.sh.erb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 $* -- cgit v1.2.3