From 1812d8167cd95beaa4106755890f385a814b141c Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 29 Dec 2009 17:22:19 -0200 Subject: Fixing drupal update template file name --- templates/drupal-update.sh | 24 ------------------------ templates/drupal-update.sh.erb | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 24 deletions(-) delete mode 100644 templates/drupal-update.sh create mode 100644 templates/drupal-update.sh.erb diff --git a/templates/drupal-update.sh b/templates/drupal-update.sh deleted file mode 100644 index 75e8381..0000000 --- a/templates/drupal-update.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# -# This file is used to update all drupal instances in the host. -# - -for version in 5 6; do - # Setup base and sites folders - base="<%= $apache_www_folder %>/drupal-$version" - cd $base/sites - drupals="`ls -I default -I all`" - - # Issue updates - for drupal in $drupals; do - # Ignore symlinks so sites are updated just once - if [ ! -h $drupal ]; then - echo "Processing $drupal..." - drush -l $drupal update - fi - done - - # Fix permissions - chown -R root.root $base/sites/all/modules - chown -R root.root $base/sites/all/themes -done diff --git a/templates/drupal-update.sh.erb b/templates/drupal-update.sh.erb new file mode 100644 index 0000000..75e8381 --- /dev/null +++ b/templates/drupal-update.sh.erb @@ -0,0 +1,24 @@ +#!/bin/bash +# +# This file is used to update all drupal instances in the host. +# + +for version in 5 6; do + # Setup base and sites folders + base="<%= $apache_www_folder %>/drupal-$version" + cd $base/sites + drupals="`ls -I default -I all`" + + # Issue updates + for drupal in $drupals; do + # Ignore symlinks so sites are updated just once + if [ ! -h $drupal ]; then + echo "Processing $drupal..." + drush -l $drupal update + fi + done + + # Fix permissions + chown -R root.root $base/sites/all/modules + chown -R root.root $base/sites/all/themes +done -- cgit v1.2.3