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.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/web/repo/lighttpd.pp b/manifests/web/repo/lighttpd.pp
index f740290..413bb72 100644
--- a/manifests/web/repo/lighttpd.pp
+++ b/manifests/web/repo/lighttpd.pp
@@ -1,15 +1,15 @@
define git::web::repo::lighttpd(
- ensure = 'present',
- $gitweb_url,
- $gitweb_config
+ $ensure = 'present',
+ $gitweb_url,
+ $gitweb_config
){
file{"/etc/lighttpd/gitweb.d/${name}.conf": }
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;
+ content => template("git/web/lighttpd"),
+ notify => Service['lighttpd'],
+ owner => root, group => 0, mode => 0644;
}
} else {
File["/etc/lighttpd/gitweb.d/${name}.conf"]{