Fix smtp port and host assignment in config.pp

The smtp port and host resources were replaced, this patch
fixing that typo.

Change-Id: I5b1c70f45ad04d93082951bf08c0d2e3b900eafc
This commit is contained in:
Marton Kiss 2015-08-13 20:16:52 +02:00
parent 578f667fbd
commit b8bc16bd5b
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ class askbot::config (
db_password => $db_password,
db_host => $db_host,
askbot_debug => $askbot_debug,
smtp_port => $smtp_host,
smtp_host => $smtp_port,
smtp_port => $smtp_port,
smtp_host => $smtp_host,
redis_enabled => $redis_enabled,
redis_prefix => $redis_prefix,
redis_port => $redis_port,