summaryrefslogtreecommitdiff
path: root/manifests/web/repo/lighttpd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/web/repo/lighttpd.pp')
-rw-r--r--manifests/web/repo/lighttpd.pp7
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/web/repo/lighttpd.pp b/manifests/web/repo/lighttpd.pp
index 413bb72..a4f2467 100644
--- a/manifests/web/repo/lighttpd.pp
+++ b/manifests/web/repo/lighttpd.pp
@@ -3,12 +3,13 @@ define git::web::repo::lighttpd(
$gitweb_url,
$gitweb_config
){
- file{"/etc/lighttpd/gitweb.d/${name}.conf": }
+ include git::web::lighttpd
+ file{"/etc/lighttpd/gitweb.d/${name}.conf":
+ notify => Service['lighttpd'],
+ }
if $ensure == 'present' {
- include git::web::lighttpd
File["/etc/lighttpd/gitweb.d/${name}.conf"]{
content => template("git/web/lighttpd"),
- notify => Service['lighttpd'],
owner => root, group => 0, mode => 0644;
}
} else {