diff options
author | Martin Kosek <mkosek@redhat.com> | 2011-02-02 16:24:30 +0100 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-02-03 10:34:01 -0500 |
commit | 4880598fbd88b2a8a9c76ec794a654350f6720d7 (patch) | |
tree | c06b470cb4e2eb997c7f79026fac2a5ebac99ca6 /install/tools | |
parent | c9ff669cdd7906fcd463a33f3468623e27116f52 (diff) | |
download | freeipa-4880598fbd88b2a8a9c76ec794a654350f6720d7.tar.gz freeipa-4880598fbd88b2a8a9c76ec794a654350f6720d7.tar.xz freeipa-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
Diffstat (limited to 'install/tools')
-rwxr-xr-x | install/tools/ipa-server-install | 6 |
1 files changed, 3 insertions, 3 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 |