summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-01-28 14:33:47 -0200
committerSilvio Rhatto <rhatto@riseup.net>2012-01-28 14:33:47 -0200
commit34845322d47a0ae887d965bb865282d90af93443 (patch)
treef1c835da577c3005f4dcd740ef96c05755d878a6
parentafade3b215bc5c10fdbf30a5d8b6d97e87302aaa (diff)
downloadpuppet-qwebirc-34845322d47a0ae887d965bb865282d90af93443.tar.gz
puppet-qwebirc-34845322d47a0ae887d965bb865282d90af93443.tar.bz2
Fixing sslport parameter
-rw-r--r--templates/config.py.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/config.py.erb b/templates/config.py.erb
index efafd7c..c899956 100644
--- a/templates/config.py.erb
+++ b/templates/config.py.erb
@@ -20,11 +20,11 @@ from qwebirc.config_options import *
# Port of IRC server to connect to.
IRCSERVER, IRCPORT = "<%= ircserver %>", <%= ircport %>
-<% if ssl_port != false %>
+<% if sslport != false %>
# OPTION: SSLPORT
# SSL port of IRC server to connect to.
# If this option is uncommented it will override IRCPORT.
-SSLPORT = 6697
+SSLPORT = <%= sslport %>
<% end %>
# OPTION: REALNAME
# The realname field of IRC clients will be set to this value.