From 85ceabbfaf0e6cac1c733bc02a0a291087cb4cc0 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Tue, 9 Dec 2014 20:05:40 +0100 Subject: [PATCH] Change the APP_NAME to Packstack Instead of 'Welcome to Installer setup utility' it should be 'Welcome to the Packstack setup utility'. Change-Id: I698d17645f4a53ce738be5ea463335466408ed6e --- packstack/installer/basedefs.py | 2 +- packstack/installer/output_messages.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packstack/installer/basedefs.py b/packstack/installer/basedefs.py index 9e213236a..676569c8a 100644 --- a/packstack/installer/basedefs.py +++ b/packstack/installer/basedefs.py @@ -13,7 +13,7 @@ import tempfile from .utils import get_current_user -APP_NAME = "Installer" +APP_NAME = "Packstack" FILE_YUM_VERSION_LOCK = "/etc/yum/pluginconf.d/versionlock.list" diff --git a/packstack/installer/output_messages.py b/packstack/installer/output_messages.py index cf6420398..3103a2d22 100644 --- a/packstack/installer/output_messages.py +++ b/packstack/installer/output_messages.py @@ -18,7 +18,7 @@ import basedefs ####INFO MESSAGES#### ##################### -INFO_HEADER="Welcome to %s setup utility" % basedefs.APP_NAME +INFO_HEADER="Welcome to the %s setup utility" % basedefs.APP_NAME INFO_INSTALL_SUCCESS="\n **** Installation completed successfully ******\n" INFO_INSTALL="Installing:" INFO_DSPLY_PARAMS="\n%s will be installed using the following configuration:" % basedefs.APP_NAME