summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2011-02-02 16:24:30 +0100
committerRob Crittenden <rcritten@redhat.com>2011-02-03 10:34:01 -0500
commit4880598fbd88b2a8a9c76ec794a654350f6720d7 (patch)
treec06b470cb4e2eb997c7f79026fac2a5ebac99ca6
parentc9ff669cdd7906fcd463a33f3468623e27116f52 (diff)
downloadfreeipa.git-4880598fbd88b2a8a9c76ec794a654350f6720d7.tar.gz
freeipa.git-4880598fbd88b2a8a9c76ec794a654350f6720d7.tar.xz
freeipa.git-4880598fbd88b2a8a9c76ec794a654350f6720d7.zip
ipa-server-install inconsistent capitalization
A cosmetic patch to IPA server installation output aimed to make capitalization in installer output consistent. Several installation tasks started with a lowercase letter and several installation task steps started with an uppercase letter. https://fedorahosted.org/freeipa/ticket/776
-rwxr-xr-xinstall/tools/ipa-server-install6
-rw-r--r--ipaserver/install/dsinstance.py2
-rw-r--r--ipaserver/install/httpinstance.py10
-rw-r--r--ipaserver/install/krbinstance.py2
4 files changed, 10 insertions, 10 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index 64eccd87..6c0873f3 100755
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -856,14 +856,14 @@ def main():
ds.apply_updates()
# Restart ds and krb after configurations have been changed
- service.print_msg("restarting the directory server")
+ service.print_msg("Restarting the directory server")
ds.restart()
- service.print_msg("restarting the KDC")
+ service.print_msg("Restarting the KDC")
krb.restart()
# Restart httpd to pick up the new IPA configuration
- service.print_msg("restarting the web server")
+ service.print_msg("Restarting the web server")
http.restart()
# Create a BIND instance
diff --git a/ipaserver/install/dsinstance.py b/ipaserver/install/dsinstance.py
index 0a33697d..be6b5048 100644
--- a/ipaserver/install/dsinstance.py
+++ b/ipaserver/install/dsinstance.py
@@ -280,7 +280,7 @@ class DsInstance(service.Service):
self.__setup_sub_dict()
self.__common_setup()
- self.step("Setting up initial replication", self.__setup_replica)
+ self.step("setting up initial replication", self.__setup_replica)
self.step("adding replication acis", self.__add_replication_acis)
self.__common_post_setup()
diff --git a/ipaserver/install/httpinstance.py b/ipaserver/install/httpinstance.py
index 46a5676f..4f876c9b 100644
--- a/ipaserver/install/httpinstance.py
+++ b/ipaserver/install/httpinstance.py
@@ -73,13 +73,13 @@ class HTTPInstance(service.Service):
self.step("disabling mod_ssl in httpd", self.__disable_mod_ssl)
- self.step("Setting mod_nss port to 443", self.__set_mod_nss_port)
- self.step("Setting mod_nss password file", self.__set_mod_nss_passwordfile)
- self.step("Adding URL rewriting rules", self.__add_include)
+ self.step("setting mod_nss port to 443", self.__set_mod_nss_port)
+ self.step("setting mod_nss password file", self.__set_mod_nss_passwordfile)
+ self.step("adding URL rewriting rules", self.__add_include)
self.step("configuring httpd", self.__configure_http)
- self.step("Setting up ssl", self.__setup_ssl)
+ self.step("setting up ssl", self.__setup_ssl)
if autoconfig:
- self.step("Setting up browser autoconfig", self.__setup_autoconfig)
+ self.step("setting up browser autoconfig", self.__setup_autoconfig)
self.step("publish CA cert", self.__publish_ca_cert)
self.step("creating a keytab for httpd", self.__create_http_keytab)
self.step("configuring SELinux for httpd", self.__selinux_config)
diff --git a/ipaserver/install/krbinstance.py b/ipaserver/install/krbinstance.py
index 86804ce0..ecb84277 100644
--- a/ipaserver/install/krbinstance.py
+++ b/ipaserver/install/krbinstance.py
@@ -204,7 +204,7 @@ class KrbInstance(service.Service):
self.step("adding the password extension to the directory", self.__add_pwd_extop_module)
if setup_pkinit:
self.step("installing X509 Certificate for PKINIT", self.__setup_pkinit)
- self.step("Enable GSSAPI for replication", self.__convert_to_gssapi_replication)
+ self.step("enable GSSAPI for replication", self.__convert_to_gssapi_replication)
self.__common_post_setup()