summaryrefslogtreecommitdiff
path: root/manifests/lighty.pp
blob: 8b7f90fd9778414e127aba851aee0eed434fe605 (plain)
1
2
3
4
5
6
7
8
9
10
class reprepro::lighty inherits lighttpd {
  file { "/etc/lighttpd/conf-available/20-reprepro.conf":
      ensure  => present,
      content => "alias.url += ( \"/debian/\" => \"$reprepro::basedir/\" )\n";
    "/etc/lighttpd/conf-enabled/20-reprepro.conf":
      ensure  => "/etc/lighttpd/conf-available/20-reprepro.conf",
      require => File['/etc/lighttpd/conf-available/20-reprepro.conf'],
      notify  => Service['lighttpd'];
  }
}