From 686968381969b01ee6623d7f758bbf10e547aef9 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 7 Feb 2013 15:18:25 -0200 Subject: Adding system-wide drushrc --- files/drushrc.php | 346 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ manifests/init.pp | 18 +++ 2 files changed, 364 insertions(+) create mode 100644 files/drushrc.php diff --git a/files/drushrc.php b/files/drushrc.php new file mode 100644 index 0000000..4127ee8 --- /dev/null +++ b/files/drushrc.php @@ -0,0 +1,346 @@ + TRUE); + +// CVS credentials for module dowlnoads. +# $command_specific['dl'] = array('cvscredentials' => 'user:pass'); + +// Additional folders to search for scripts. +// Separate by : (Unix-based systems) or ; (Windows). +# $command_specific['script']['script-path'] = 'sites/all/scripts:profiles/myprofile/scripts'; + +// Always show release notes when running pm-update or pm-updatecode. +# $command_specific['pm-update'] = array('notes' => TRUE); +# $command_specific['pm-updatecode'] = array('notes' => TRUE); + +// Set a predetermined username and password when using site-install. +# $command_specific['site-install'] = array('account-name' => 'alice', 'account-pass' => 'secret'); + +/** + * List of Drush commands or aliases that should override built-in shell + * functions and commands; otherwise, built-ins override Drush commands. Default + * is 'help,dd,sa'. Warning: bad things can happen if you put the wrong thing + * here (e.g. eval, grep), so be cautious. If a Drush command overrides a + * built-in command (e.g. bash help), then you can use the `builtin` operator + * to run the built-in version (e.g. `builtin help` to show bash help instead of + * Drush help.) If a Drush command overrides a shell command (e.g. grep), then + * you can use the regular shell command by typing in the full path to the + * command (e.g. /bin/grep). + */ +# $command_specific['core-cli'] = array('override' => 'help,dd,sa'); + +/** + * Load a drushrc file from the 'drush' folder at the root of the current + * git repository. Example script below by grayside. Customize as desired. + * @see: http://grayside.org/node/93. + */ +#exec('git rev-parse --show-toplevel 2> /dev/null', $output); +#if (!empty($output)) { +# $repo = $output[0]; +# $options['config'] = $repo . '/drush/drushrc.php'; +# $options['include'] = $repo . '/drush/commands'; +# $options['alias-path'] = $repo . '/drush/aliases'; +#} diff --git a/manifests/init.pp b/manifests/init.pp index ac04fc4..a3db0c6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -15,6 +15,24 @@ class drupal( ensure => installed, } + # Drush config folder + file { '/etc/drush': + ensure => directory + owner => root, + grop => 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'], + } + # Drupal management script file { "/usr/local/sbin/drupal": ensure => present, -- cgit v1.2.3