From 951ef21d7bcadcf7fcbc5d3718d0ff16869d0660 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 16 Dec 2015 10:00:55 -0200 Subject: Split into smaller classes --- manifests/drush.pp | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 manifests/drush.pp (limited to 'manifests/drush.pp') diff --git a/manifests/drush.pp b/manifests/drush.pp new file mode 100644 index 0000000..4a9b27f --- /dev/null +++ b/manifests/drush.pp @@ -0,0 +1,58 @@ +class drupal::drush( + $version = hiera('drupal::drush::version', '8.0.1') +) { + # Drush config folder + file { '/etc/drush': + ensure => directory, + owner => root, + group => root, + mode => 0644, + } + + # Drush default configuration + file { '/etc/drush/drushrc.php': + ensure => present, + owner => root, + group => root, + mode => 0644, + source => 'puppet:///modules/drupal/drushrc.php', + require => File['/etc/drush'], + } + + # TODO: future + package { 'drush': + ensure => absent, + } + + #vcsrepo { "/usr/local/share/drush": + # ensure => present, + # provider => git, + # source => 'https://github.com/drush-ops/drush', + # revision => '401f034c59b031221d900bec7c2ba81d1331c284', + # owner => 'root', + # group => 'root', + #} + + #file { "/usr/local/bin/drush": + # ensure => '/usr/local/share/drush/drush', + # owner => root, + # group => root, + # require => [ Vcsrepo['/usr/local/share/drush'], Exec['getcomposer'] ], + #} + + #exec { 'composer-drush': + # command => '/usr/local/bin/composer global require drush/drush:dev-master', + # user => 'vagrant', + # creates => '/home/vagrant/composer/vendor/bin/drush', + # environment => [ 'COMPOSER_HOME="/vagrant"' ], + # require => Exec['getcomposer'], + #} + + exec { 'getdrush': + 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, + creates => '/usr/local/bin/drush', + } +} -- cgit v1.2.3