aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-10-19 22:13:38 +0300
committerThomas Backlund <tmb@mageia.org>2015-10-19 22:13:38 +0300
commit46e92afe7abe5050d748569cf414a1edc118f98c (patch)
tree6b5d17bf6e3c457a197248ca9ec019f3bef71817
parent0b99207a370212860ccf1d877d8f90f8fc5b7c34 (diff)
downloadpuppet-46e92afe7abe5050d748569cf414a1edc118f98c.tar
puppet-46e92afe7abe5050d748569cf414a1edc118f98c.tar.gz
puppet-46e92afe7abe5050d748569cf414a1edc118f98c.tar.bz2
puppet-46e92afe7abe5050d748569cf414a1edc118f98c.tar.xz
puppet-46e92afe7abe5050d748569cf414a1edc118f98c.zip
lint fixes for bcd
-rw-r--r--modules/bcd/manifests/base.pp2
-rw-r--r--modules/bcd/manifests/init.pp2
-rw-r--r--modules/bcd/manifests/rsync.pp6
-rw-r--r--modules/bcd/manifests/web.pp2
4 files changed, 6 insertions, 6 deletions
diff --git a/modules/bcd/manifests/base.pp b/modules/bcd/manifests/base.pp
index 8bee2907..d515f3e1 100644
--- a/modules/bcd/manifests/base.pp
+++ b/modules/bcd/manifests/base.pp
@@ -1,6 +1,6 @@
class bcd::base {
include sudo
- include bcd
+ include bcd
group { $bcd::login: }
diff --git a/modules/bcd/manifests/init.pp b/modules/bcd/manifests/init.pp
index 81f0ef1c..1ff57144 100644
--- a/modules/bcd/manifests/init.pp
+++ b/modules/bcd/manifests/init.pp
@@ -1,5 +1,5 @@
class bcd {
$login = 'bcd'
$home = '/home/bcd'
- $public_isos = "$home/public_html/isos"
+ $public_isos = "${home}/public_html/isos"
}
diff --git a/modules/bcd/manifests/rsync.pp b/modules/bcd/manifests/rsync.pp
index 7b772b24..0a9ccc34 100644
--- a/modules/bcd/manifests/rsync.pp
+++ b/modules/bcd/manifests/rsync.pp
@@ -1,7 +1,7 @@
class bcd::rsync {
include bcd::base
$public_isos = $bcd::public_isos
- class { rsyncd:
- rsyncd_conf => 'bcd/rsyncd.conf',
- }
+ class { 'rsyncd':
+ rsyncd_conf => 'bcd/rsyncd.conf',
+ }
}
diff --git a/modules/bcd/manifests/web.pp b/modules/bcd/manifests/web.pp
index 9f509ec3..97c697e5 100644
--- a/modules/bcd/manifests/web.pp
+++ b/modules/bcd/manifests/web.pp
@@ -1,6 +1,6 @@
class bcd::web {
include bcd::base
- $location = "$bcd::home/public_html"
+ $location = "${bcd::home}/public_html"
apache::vhost::base { "bcd.$::domain":
location => $location,