From 6945413b3db93f0273b45f25e669a04293c0fb20 Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Mon, 26 Sep 2016 10:00:41 +0200 Subject: [PATCH] Remove unnecesary spaces in log messages. Spaces added by mistake in some log messages. Change-Id: Ib9c0a84ad921772f97b5ddf30d9f94b3692f3b9d --- manifests/init.pp | 6 ++++-- manifests/params.pp | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 91bbfe78..a00c1483 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -391,8 +391,10 @@ class horizon( } if $fqdn { - warning('Parameter fqdn is deprecated. Please use parameter allowed_hosts for setting ALLOWED_HOSTS in \ - settings_local.py and parameter server_aliases for setting ServerAlias directives in vhost.conf.') + + warning("Parameter fqdn is deprecated. Please use parameter allowed_hosts for setting ALLOWED_HOSTS in \ +settings_local.py and parameter server_aliases for setting ServerAlias directives in vhost.conf.") + $final_allowed_hosts = $fqdn $final_server_aliases = $fqdn } else { diff --git a/manifests/params.pp b/manifests/params.pp index 7105d52f..edc09f7c 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -45,7 +45,7 @@ class horizon::params { } default: { fail("Unsupported osfamily: ${::osfamily} operatingsystem: ${::operatingsystem}, \ - module ${module_name} only support osfamily RedHat and Debian") +module ${module_name} only support osfamily RedHat and Debian") } } }