aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-02-28 10:42:23 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-02-28 10:42:23 -0300
commit3e1f46f13d02b5c874b98cf10915bf852dab0659 (patch)
tree7db33bb3f33079ce62dd509dfa6164ae296dc842
parentf7b7586ab192cfbb42c84ccc0de01fe1619c1eb1 (diff)
downloadpuppet-drupal-3e1f46f13d02b5c874b98cf10915bf852dab0659.tar.gz
puppet-drupal-3e1f46f13d02b5c874b98cf10915bf852dab0659.tar.bz2
Rollback
-rw-r--r--manifests/drush.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/drush.pp b/manifests/drush.pp
index c9d4a2d..a2da324 100644
--- a/manifests/drush.pp
+++ b/manifests/drush.pp
@@ -1,5 +1,5 @@
class drupal::drush(
- $version = hiera('drupal::drush::version', '0.6.0')
+ $version = hiera('drupal::drush::version', '8.1.18')
) {
# Drush config folder
file { '/etc/drush':
@@ -49,7 +49,8 @@ class drupal::drush(
#}
exec { 'getdrush':
- command => "/usr/bin/wget https://github.com/drush-ops/drush-launcher/releases/download/${version}/drush.phar -O /usr/local/bin/drush && chmod +x /usr/local/bin/drush",
+ #command => "/usr/bin/wget https://github.com/drush-ops/drush-launcher/releases/download/${version}/drush.phar -O /usr/local/bin/drush && chmod +x /usr/local/bin/drush",
+ command => "/usr/bin/wget https://github.com/drush-ops/drush/releases/download/${version}/drush.phar -O /usr/local/bin/drush && chmod +x /usr/local/bin/drush",
user => 'root',
cwd => '/tmp',
timeout => 0,