Fix settings.php permission ownership

Update the upstream version of drush dsd tool used to update
Drupal siteroot to v0.8 that fixes settings.php ownership
problem during a drush dsd-update process.

Change-Id: I3c88320905e9a65a9335d7cd78ab46bf8649e5ad
Closes-Bug: #1334625
This commit is contained in:
Marton Kiss 2014-06-26 15:29:23 +02:00
parent 9adc5fd79b
commit 2d7cd545e5
1 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@
# - download_dir: download directory, local copy of release tarball lives here
define drupal::drush (
$drushdsdtar = 'https://github.com/mkissam/drush-dsd/archive/v0.7.tar.gz',
$basedrushdsdtar = 'drush-dsd-0.7.tar.gz',
$drushdsdtar = 'https://github.com/mkissam/drush-dsd/archive/v0.8.tar.gz',
$basedrushdsdtar = 'drush-dsd-0.8.tar.gz',
$download_dir = '/srv/downloads',
) {
@ -72,4 +72,4 @@ define drupal::drush (
require => File['/usr/share/php/drush/commands/dsd'],
}
}
}