diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-12-16 09:34:49 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-12-16 09:34:49 -0200 |
commit | 26ed898b68199649575848c00a07eae49510fbb6 (patch) | |
tree | 7530f30b55133cb685f68f39bf784b39885874aa | |
parent | 6e9565b2c91b06bb7439ca603a9f24bf882a183c (diff) | |
download | puppet-drupal-26ed898b68199649575848c00a07eae49510fbb6.tar.gz puppet-drupal-26ed898b68199649575848c00a07eae49510fbb6.tar.bz2 |
Fix drupal script source
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4e1cf58..f250fe9 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -27,7 +27,7 @@ class drupal( # Drupal management script file { "/usr/local/sbin/drupal": ensure => present, - content => template('drupal/drupal.sh.erb'), + source => 'puppet:///modules/drupal/drupal', owner => root, group => root, mode => 755, |