summaryrefslogtreecommitdiff
path: root/manifests/lighty.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-02-06 14:19:52 -0500
committerMicah Anderson <micah@riseup.net>2013-02-06 14:19:52 -0500
commitf4035abaa2e625ea349d6a11a33ac61e2a0041ce (patch)
tree5fc148a02db7fbac09f607ebb5bc326252102e19 /manifests/lighty.pp
parentce1ebea7cc3911ebac616a8a065a484b9452e72b (diff)
linting the module
Diffstat (limited to 'manifests/lighty.pp')
-rw-r--r--manifests/lighty.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/lighty.pp b/manifests/lighty.pp
index 4e34f5e..3ac2bf4 100644
--- a/manifests/lighty.pp
+++ b/manifests/lighty.pp
@@ -1,11 +1,11 @@
class reprepro::lighty inherits lighttpd {
include reprepro
- file { "/etc/lighttpd/conf-available/20-reprepro.conf":
- ensure => present,
+ 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",
+ ensure => '/etc/lighttpd/conf-available/20-reprepro.conf',
require => File['/etc/lighttpd/conf-available/20-reprepro.conf'],
- notify => Service['lighttpd'];
+ notify => Service['lighttpd'];
}
}