summaryrefslogtreecommitdiff
path: root/manifests/lighty.pp
blob: 3ac2bf452a7878e58f67c2735f0301bab2b6033a (plain)
1
2
3
4
5
6
7
8
9
10
11
class reprepro::lighty inherits lighttpd {
  include reprepro
  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'];
  }
}