summaryrefslogtreecommitdiff
path: root/manifests/lighty.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-26 11:18:10 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-26 11:18:10 -0200
commite0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76 (patch)
treea0a3601fa0dfd1d3094cd5beeabbc341d8146cef /manifests/lighty.pp
parent26967edfd336d61dc9d71de89b559ae60efcd798 (diff)
downloadpuppet-reprepro-e0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76.tar.gz
puppet-reprepro-e0d01e3746ed8052ef6ebe060b3f1e8ec98e3b76.tar.bz2
Cleanup, variable scoping and styling
Diffstat (limited to 'manifests/lighty.pp')
-rw-r--r--manifests/lighty.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/lighty.pp b/manifests/lighty.pp
index 24228cf..8b7f90f 100644
--- a/manifests/lighty.pp
+++ b/manifests/lighty.pp
@@ -1,10 +1,10 @@
class reprepro::lighty inherits lighttpd {
file { "/etc/lighttpd/conf-available/20-reprepro.conf":
- ensure => present,
+ ensure => present,
content => "alias.url += ( \"/debian/\" => \"$reprepro::basedir/\" )\n";
"/etc/lighttpd/conf-enabled/20-reprepro.conf":
- ensure => "/etc/lighttpd/conf-available/20-reprepro.conf",
+ ensure => "/etc/lighttpd/conf-available/20-reprepro.conf",
require => File['/etc/lighttpd/conf-available/20-reprepro.conf'],
- notify => Service['lighttpd'];
+ notify => Service['lighttpd'];
}
}