diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-09 16:56:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-09 16:56:29 -0300 |
commit | 49e9c924cc7087a78af757ff4e50acb944161d9c (patch) | |
tree | 0b5be4e0ae7930adb4223475c88a0fa33c0880bb | |
parent | ebb38d8f08b5565853cefb2c3dd8a57339a83810 (diff) | |
download | puppet-qwebirc-49e9c924cc7087a78af757ff4e50acb944161d9c.tar.gz puppet-qwebirc-49e9c924cc7087a78af757ff4e50acb944161d9c.tar.bz2 |
Coding style
-rw-r--r-- | manifests/init.pp | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4431751..f583f2c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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, |