summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-01-09 01:24:57 +0000
committermh <mh@immerda.ch>2009-01-09 01:24:57 +0000
commit1e805e721ae5d1f2dfe0a306596890edb4950e75 (patch)
tree08a3d5773529adb7599d6fd3e830c27f28788313
parent495657a50f1007f7da9cd4cb9156fe97757b7912 (diff)
fix import problem
-rw-r--r--manifests/web/lighttpd.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/web/lighttpd.pp b/manifests/web/lighttpd.pp
index b2d29e1..0901442 100644
--- a/manifests/web/lighttpd.pp
+++ b/manifests/web/lighttpd.pp
@@ -1,10 +1,3 @@
-class lighttpd::base::git::web inherits lighttpd::base {
- File['/etc/lighttpd/lighttpd.conf']{
- source => [ "puppet://$server/files/git/web/${fqdn}/lighttpd.conf",
- "puppet://$server/files/git/web/lighttpd.conf",
- "puppet://$server/git/web/lighttpd.conf" ],
- }
-}
class git::web::lighttpd {
include lighttpd
include lighttpd::base::git::web
@@ -32,3 +25,10 @@ class git::web::lighttpd {
owner => root, group => 0, mode => 0755;
}
}
+class lighttpd::base::git::web inherits lighttpd::base {
+ File['/etc/lighttpd/lighttpd.conf']{
+ source => [ "puppet://$server/files/git/web/${fqdn}/lighttpd.conf",
+ "puppet://$server/files/git/web/lighttpd.conf",
+ "puppet://$server/git/web/lighttpd.conf" ],
+ }
+}