summaryrefslogtreecommitdiff
path: root/manifests/web/repo/lighttpd.pp
blob: 111cc5eedf6020445f5ffd8cb06489e60d4b0432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
define git::web::repo::lighttpd(
  $ensure = 'present',
  $gitweb_url,
  $gitweb_config
){
  if $ensure == 'present' { include git::web::lighttpd }

  lighttpd::vhost::file{$name:
     ensure => $ensure,
     content => template('git/web/lighttpd');
  }
}