diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-09 17:34:22 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-09 17:34:22 -0300 |
commit | 5a779ae83b83d8e33cee57fe5c165e3b0a747159 (patch) | |
tree | b39b827b3669687d7b0f15e4e3d3d4f179be277c /manifests | |
parent | 35a42e3aade44605cc9266d7912c784e7ace59f1 (diff) | |
download | puppet-qwebirc-5a779ae83b83d8e33cee57fe5c165e3b0a747159.tar.gz puppet-qwebirc-5a779ae83b83d8e33cee57fe5c165e3b0a747159.tar.bz2 |
Adding proxy-related parameters
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index f0e6202..88bec31 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,17 +1,21 @@ # 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, - $ident = 'webchat' + $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, + $ident = 'webchat', + $args = '-n -p 3989', + $base_url = '', + $forwarded_for_header = '', + $forwarded_for_ips = '' ) { package { [ 'python-twisted', 'python-openssl', 'python-simplejson', 'mercurial' ]: |