diff options
author | Michael Scherer <misc@mageia.org> | 2012-02-10 14:20:05 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-02-10 14:20:05 +0000 |
commit | f4215808c446439c9713deaf183c8a4df13fd493 (patch) | |
tree | 5c20cf03d7bc5c59c6daaf0cbeff81bf853a0a67 | |
parent | 637a78fae722dce27561fa455d13415d0a3c6009 (diff) | |
download | puppet-f4215808c446439c9713deaf183c8a4df13fd493.tar puppet-f4215808c446439c9713deaf183c8a4df13fd493.tar.gz puppet-f4215808c446439c9713deaf183c8a4df13fd493.tar.bz2 puppet-f4215808c446439c9713deaf183c8a4df13fd493.tar.xz puppet-f4215808c446439c9713deaf183c8a4df13fd493.zip |
clean and make module reports::ii puppet-lint ready
-rw-r--r-- | deployment/reports/manifests/ii.pp | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/deployment/reports/manifests/ii.pp b/deployment/reports/manifests/ii.pp index 7af8e9dd..1d8ee123 100644 --- a/deployment/reports/manifests/ii.pp +++ b/deployment/reports/manifests/ii.pp @@ -1,17 +1,15 @@ -class reports { - class ii { - $channel = "#mageia-sysadm" - $server = "irc.freenode.net" - # tribute to Masamune Shirow - $nick = "project_2501" - - ii::bot { $nick: - channel => $channel, - server => $server, - } +class reports::ii { + $channel = '#mageia-sysadm' + $server = 'irc.freenode.net' + # tribute to Masamune Shirow + $nick = 'project_2501' - file { "/etc/puppet/socket.yaml": - content => template("reports/socket.yaml"), - } + ii::bot { $nick: + channel => $channel, + server => $server, + } + + file { '/etc/puppet/socket.yaml': + content => template('reports/socket.yaml'), } } |