summaryrefslogtreecommitdiff
path: root/manifests/lighty.pp
blob: 24228cf84d35e9872003c0501fa8186ac9a93a6e (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'];
  }
}