Skip to content

Commit

Permalink
#559: init.pp, fix drush class includes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Dec 9, 2017
1 parent 457638f commit ffa71d2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions puppet/environment/development/modules/drush/manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
###

class drush {
include php::install_rpm
include php::enable_rpm
include php::install_php
include drush::download_composer
include drush::configure_composer
include drush::install_composer
include drush::install_drush
include httpd::restart

## enforce resource ordering: applies left resource first, if the left
## resource changes, the right resource will refresh.
##
Class['php::install_rpm'] ~>
Class['php::enable_rpm'] ~>
Class['php::install_php'] ~>
Class['drush::download_composer'] ~>
Class['drush::configure_composer'] ~>
Class['drush::install_composer'] ~>
Class['drush::install_composer'] ~>
Class['httpd::restart']
}

0 comments on commit ffa71d2

Please sign in to comment.