summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-04-28 13:54:03 +0200
committervarac <varacanero@zeromail.org>2016-04-28 13:54:03 +0200
commit76ff149a095023611c05bbb00157d06f87b07c05 (patch)
tree8e5e443c2958f07027ebb60595007dd5b755d3a0
parent40d2289f8e10625cd45fdccdf492b5fb6490e66d (diff)
[style] Future parser: Remove space after resource
-rw-r--r--manifests/base.pp2
-rw-r--r--manifests/bigcouch.pp4
-rw-r--r--manifests/bigcouch/debian.pp2
3 files changed, 4 insertions, 4 deletions
diff --git a/manifests/base.pp b/manifests/base.pp
index ebff774..6c7bf25 100644
--- a/manifests/base.pp
+++ b/manifests/base.pp
@@ -106,7 +106,7 @@ class couchdb::base {
owner => $couchdb_user,
group => $couchdb_user,
notify => Service[couchdb],
- require => File ['/etc/couchdb/local.d'];
+ require => File['/etc/couchdb/local.d'];
}
case $::couchdb::bigcouch {
diff --git a/manifests/bigcouch.pp b/manifests/bigcouch.pp
index 36c6ce8..a97411b 100644
--- a/manifests/bigcouch.pp
+++ b/manifests/bigcouch.pp
@@ -22,7 +22,7 @@ class couchdb::bigcouch inherits couchdb::base {
# or site_apt::leap_repo from the leap_platfrom repository
# for signed 0.4.2 packages
- Package ['couchdb'] {
+ Package['couchdb'] {
name => 'bigcouch'
}
@@ -44,7 +44,7 @@ class couchdb::bigcouch inherits couchdb::base {
notify => Service[couchdb]
}
- Service ['couchdb'] {
+ Service['couchdb'] {
name => 'bigcouch'
}
diff --git a/manifests/bigcouch/debian.pp b/manifests/bigcouch/debian.pp
index 8af3993..645c6da 100644
--- a/manifests/bigcouch/debian.pp
+++ b/manifests/bigcouch/debian.pp
@@ -1,6 +1,6 @@
class couchdb::bigcouch::debian inherits couchdb::debian {
- File ['/etc/init.d/couchdb'] {
+ File['/etc/init.d/couchdb'] {
ensure => absent
}