aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-02-24 18:57:20 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-02-24 18:57:20 -0300
commit2e83bfb7dcca150bcc86cb127d19181d3bf92599 (patch)
tree2323598df92f7f2ac5b0109d693f718bb89f1c0e
parenta8b4b5b0d1037a649f391df812635ecf21b8f21b (diff)
downloadpuppet-drupal-2e83bfb7dcca150bcc86cb127d19181d3bf92599.tar.gz
puppet-drupal-2e83bfb7dcca150bcc86cb127d19181d3bf92599.tar.bz2
Use /usr/local/bin/drupal
-rw-r--r--manifests/init.pp7
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,