diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-02-24 18:57:20 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-02-24 18:57:20 -0300 |
commit | 2e83bfb7dcca150bcc86cb127d19181d3bf92599 (patch) | |
tree | 2323598df92f7f2ac5b0109d693f718bb89f1c0e /manifests | |
parent | a8b4b5b0d1037a649f391df812635ecf21b8f21b (diff) | |
download | puppet-drupal-2e83bfb7dcca150bcc86cb127d19181d3bf92599.tar.gz puppet-drupal-2e83bfb7dcca150bcc86cb127d19181d3bf92599.tar.bz2 |
Use /usr/local/bin/drupal
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 7183ae3..577e6fe 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -4,8 +4,13 @@ class drupal { include drupal::makefiles include drupal::maintenance - # Drupal management script + # TODO: old location, remove in the future file { "/usr/local/sbin/drupal": + ensure => absent, + } + + # Drupal management script + file { "/usr/local/bin/drupal": ensure => present, source => 'puppet:///modules/drupal/drupal', owner => root, |