From: Silvio Rhatto Date: Fri, 5 Mar 2010 13:35:10 +0000 (-0300) Subject: Adding action 'updatedb' into drupal script X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e86d178f388fce27337fc434a4abd2245634e963;p=puppet-drupal.git Adding action 'updatedb' into drupal script --- 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 $*