You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We will replace the manual exec implementation of wget, with the equivalent puppet module, when the wget::fetch syntax question has been resolved. Specifically, we should have an implementation as follows within install_drush.pp:
...
## include puppet modulesinclude wget
## variables$drush_version = '8.0.0-rc4'## download drush: wget is a wrapper around the 'exec' function## @timeout, override the default 'exec' timeout# @verbose, verbose loggingwget::fetch {'download-drush':
source => "https://github.com/drush-ops/drush/releases/download/${drush_version}/drush.phar",
destination => '/tmp/drush.phar',
verbose => false,
}
...
The text was updated successfully, but these errors were encountered:
We will replace the manual
exec
implementation ofwget
, with the equivalent puppet module, when thewget::fetch
syntax question has been resolved. Specifically, we should have an implementation as follows withininstall_drush.pp
:The text was updated successfully, but these errors were encountered: