#!/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