[Freeipa-devel] [PATCH] Pushed 1-liner for ipactl

Rob Crittenden rcritten at redhat.com
Thu Sep 16 17:41:48 UTC 2010


I was starting the services in the wrong order. The KDC needs to start 
before named. This was causing named to not start because it couldn't 
authenticate to the KDC (which wasn't running).

Pushed as a 1-liner.

rob

diff --git a/install/tools/ipactl b/install/tools/ipactl
index fa86511..596f07f 100755
--- a/install/tools/ipactl
+++ b/install/tools/ipactl
@@ -26,7 +26,7 @@ IFS=";"

  # start and stop are basically a reverse of each other
  services_stop="ipa_kpasswd;httpd;krb5kdc;dirsrv;ntpd;named;pki-cad pki-ca"
-services_start="dirsrv;ntpd;named;krb5kdc;ipa_kpasswd;httpd;pki-cad pki-ca"
+services_start="dirsrv;ntpd;krb5kdc;named;ipa_kpasswd;httpd;pki-cad pki-ca"

  function is_running() {
      # $1 = service to check on




More information about the Freeipa-devel mailing list