diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2019-02-28 10:42:23 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2019-02-28 10:42:23 -0300 |
commit | 3e1f46f13d02b5c874b98cf10915bf852dab0659 (patch) | |
tree | 7db33bb3f33079ce62dd509dfa6164ae296dc842 /manifests | |
parent | f7b7586ab192cfbb42c84ccc0de01fe1619c1eb1 (diff) | |
download | puppet-drupal-3e1f46f13d02b5c874b98cf10915bf852dab0659.tar.gz puppet-drupal-3e1f46f13d02b5c874b98cf10915bf852dab0659.tar.bz2 |
Rollback
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/drush.pp | 5 |
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, |