]> gitweb.fluxo.info Git - puppet-qwebirc.git/commitdiff
Coding style
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 9 May 2013 19:56:29 +0000 (16:56 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 9 May 2013 19:56:29 +0000 (16:56 -0300)
manifests/init.pp

index 443175153634a0dafbc2eb70bbc46a2b7d48ffb7..f583f2cb3005ceaf2dd785e07c4ac52f4c5191e5 100644 (file)
@@ -1,8 +1,17 @@
 # Based on https://wiki.koumbit.net/QwebIrc
-class qwebirc($ircserver = 'irc.myserver.com', $ircport = '6667', $realname = 'http://moo.com/',
-              $webirc_mode = 'None', $base_url = 'http://foo.foo.org/', $network_name = 'FooNet',
-              $sslport = false, $feedback_from = 'moo@moo.com', $feedback_to = 'moo@moo.com',
-              $sslfingerprint = false, $webirc_password = false) {
+class qwebirc(
+    $ircserver       = 'irc.myserver.com',
+    $ircport         = '6667',
+    $realname        = 'http://moo.com/',
+    $webirc_mode     = 'None',
+    $base_url        = 'http://foo.foo.org/',
+    $network_name    = 'FooNet',
+    $sslport         = false,
+    $feedback_from   = 'moo@moo.com',
+    $feedback_to     = 'moo@moo.com',
+    $sslfingerprint  = false,
+    $webirc_password = false
+) {
 
   package { [ 'python-twisted', 'python-openssl', 'python-simplejson', 'mercurial' ]:
     ensure => present,