[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

[Freeipa-devel] [PATCH] be clearer about what is being configured



We always displayed this:

This includes:
  * Configure the Network Time Daemon (ntpd)

Even if -N was passed to not configure ntpd. So instead add a new list of excluded features.

rob
>From a17908e390197eb8a2395374dde9f3bb70c12a59 Mon Sep 17 00:00:00 2001
From: Rob Crittenden <rcritten redhat com>
Date: Thu, 5 Jun 2008 14:47:56 -0400
Subject: [PATCH] Make it clear which packages are being configured and which aren't.

450175
---
 ipa-server/ipa-install/ipa-server-install |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/ipa-server/ipa-install/ipa-server-install b/ipa-server/ipa-install/ipa-server-install
index 61a4682..a284a30 100644
--- a/ipa-server/ipa-install/ipa-server-install
+++ b/ipa-server/ipa-install/ipa-server-install
@@ -347,11 +347,16 @@ def main():
     print "This program will setup the FreeIPA Server."
     print ""
     print "This includes:"
-    print "  * Configure the Network Time Daemon (ntpd)"
+    if options.conf_ntp:
+        print "  * Configure the Network Time Daemon (ntpd)"
     print "  * Create and configure an instance of Directory Server"
     print "  * Create and configure a Kerberos Key Distribution Center (KDC)"
     print "  * Configure Apache (httpd)"
     print "  * Configure TurboGears"
+    if not options.conf_ntp:
+        print ""
+        print "Excluded by options:"
+        print "  * Configure the Network Time Daemon (ntpd)"
     print ""
     print "To accept the default shown in brackets, press the Enter key."
     print ""
-- 
1.5.4

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]