Forge Home

drush

Installs several versions of Drush system-wide.

16,941 downloads

2,108 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.6.0 (latest)
  • 0.5.0
  • 0.4.0
  • 0.3.0
  • 0.2.0
  • 0.1.0
released Jul 1st 2020
This version is compatible with:
  • Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2016.4.x
  • Puppet >= 4.10.0 < 7.0.0
  • , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'jonhattan-drush', '0.6.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jonhattan-drush
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jonhattan-drush --version 0.6.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: php, cli, drupal

Documentation

jonhattan/drush — version 0.6.0 Jul 1st 2020

Drush puppet module

puppet forge version last tag

This module enables installing several versions of Drush system-wide.

At present the available installation method is via Composer.

Quick install instructions

Find quick install instructions in the Puppetry for Drupaleros wiki page.

These instructions are intended for people that don't have the time or the need to learn Puppet, but wants to benefit from the facilities provided by this Puppet module in order to install and manage several versions of Drush system-wide.

Features

  • Installs dist (tarball) or source code (git clone) of Drush
  • Definition of Drush aliases
  • Download Drush extensions
  • Optionally install command dependencies (wget, git, gzip, rsync, ...)
  • Configures bash integration. Only autocompletion or full integration
  • Allows to choose the 'default' Drush installation

It doesn't goes crazy to provide a freaking interface to run Drush commands from Puppet. Although it is tempting, and I don't discard that in a future, it doesn't seem suitable in Puppet philosophy.

What it does

Each given Drush version is installed to a directory matching its major version under /opt/drush/. Also, a symlink to the executable is placed in /usr/local/bin/, suffixed with its major version.

Additionally, for the default version, /opt/drush/default will be a symlink to its codebase, and /usr/local/bin/drush will point to its executable.

For example if you choose to install Drush versions 6 and master, being 6 the chosen default version, this is the final result on the filesystem:

d /opt/drush/master
d /opt/drush/6
l /opt/drush/default -> /opt/drush/6/vendor/drush/drush
d /opt/drush/.composer

l /usr/local/bin/drush -> /usr/local/bin/drush6
l /usr/local/bin/drush6 -> /opt/drush/6/vendor/bin/drush
l /usr/local/bin/drushmaster -> /opt/drush/master/vendor/bin/drush

With respect to other artifacts,

  • Aliases are installed to /etc/drush
  • Extensions are downloaded to /usr/share/drush/commands, the standard Drush site-wide location
  • Several shell scripts may be placed in /etc/bash_completion.d and /etc/profile.d, depending on the provided arguments to Drush class.

Example usage

Below is an example of the supported Hiera data structure.

See Puppetry for Drupaleros wiki page for an example of Puppet code not based on Hiera.

Hieradata

classes :
  - 'drush'

drush::versions :
  - '6'
  - 'master'

drush::extensions :
  - 'drush_extras'
  - 'registry_rebuild'

drush::aliases :
  base:
    group : 'example'
    path_aliases     :
      '%dump-dir'    : '/opt/dumps'
    command_specific :
      sql-sync       :
        cache: false

  dev :
    group  : 'example'
    parent : '@base'
    root   : '/var/www/dev.example.com/htdocs'
    uri    : 'dev.example.com'

  staging :
    group       : 'example'
    parent      : '@base'
    root        : '/var/www/staging.example.com/htdocs'
    uri         : 'staging.example.com'
    remote_host : 'staging.example.com'
    remote_user : 'deploy'
    ssh_options : '-p 2203'

Manifest


# Include the declared Hiera classes and let Puppet do the magic.
hiera_include('classes')

License

MIT

Author Information

Jonathan Araña Cruz - SB IT Media, S.L.