aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2009-12-30 21:43:24 -0200
committerSilvio Rhatto <rhatto@riseup.net>2009-12-30 21:43:24 -0200
commita9ea05f57d85bd1998ef72f221a9a7683465e976 (patch)
tree62cd51f69b975b78fad84694912a21948db7438a
parent70d738783e00ed1f3338fa33b99b1bfde2b3c949 (diff)
downloadpuppet-drupal-a9ea05f57d85bd1998ef72f221a9a7683465e976.tar.gz
puppet-drupal-a9ea05f57d85bd1998ef72f221a9a7683465e976.tar.bz2
Variable check and README update
-rw-r--r--README6
-rw-r--r--manifests/init.pp5
2 files changed, 7 insertions, 4 deletions
diff --git a/README b/README
index 5274e38..3c60779 100644
--- a/README
+++ b/README
@@ -1,8 +1,6 @@
Puppet module for Drupal
========================
-This module has the following dependencies available at git.sarava.org that
-should be included before puppet-drupal:
+This module needs puppet-pear (available at git.sarava.org) to be included
+before puppet-drupal.
- - puppet-apache
- - puppet-pear
diff --git a/manifests/init.pp b/manifests/init.pp
index 1a8334a..dcfaa7f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,4 +1,9 @@
class drupal inherits pear {
+
+ case $apache_www_folder {
+ '': { fail("you need to define \$apache_www_folder for drupal module") }
+ }
+
# We use drupal source from upstream
package { "drupal6":
ensure => absent,