diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-09-10 17:14:16 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-09-16 11:33:25 -0400 |
commit | d43eb785f55104a05af624078a47c397477d49b3 (patch) | |
tree | cd4187e288e8bbb78b72d31885d3964ce7d2ea14 /ipaserver/install | |
parent | 52af18ec03b7a5dc00764d4f33fe8d62811b8ca6 (diff) | |
download | freeipa-d43eb785f55104a05af624078a47c397477d49b3.tar.gz freeipa-d43eb785f55104a05af624078a47c397477d49b3.tar.xz freeipa-d43eb785f55104a05af624078a47c397477d49b3.zip |
Show all missing packages when setting up bind, not one at a time.
We used to check for these one at a time so you'd run it once and find
out you're missing the bind package. Install that and run the installer
again and you'd discover you're missing bind-dyndb-ldap.
ticket 140
Diffstat (limited to 'ipaserver/install')
-rw-r--r-- | ipaserver/install/bindinstance.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py index b57fc9f0d..a144193b7 100644 --- a/ipaserver/install/bindinstance.py +++ b/ipaserver/install/bindinstance.py @@ -34,18 +34,22 @@ import ipalib from ipalib import api, util, errors def check_inst(unattended): + has_bind = True # So far this file is always present in both RHEL5 and Fedora if all the necessary # bind packages are installed (RHEL5 requires also the pkg: caching-nameserver) if not os.path.exists('/etc/named.rfc1912.zones'): print "BIND was not found on this system" - print "Please install the bind package and start the installation again" - return False + print "Please install the 'bind' package and start the installation again" + has_bind = False # Also check for the LDAP BIND plug-in if not os.path.exists('/usr/lib/bind/ldap.so') and \ not os.path.exists('/usr/lib64/bind/ldap.so'): print "The BIND LDAP plug-in was not found on this system" - print "Please install the bind-dyndb-ldap package and start the installation again" + print "Please install the 'bind-dyndb-ldap' package and start the installation again" + has_bind = False + + if not has_bind: return False if not unattended and os.path.exists('/etc/named.conf'): @@ -83,7 +87,7 @@ def get_reverse_zone(ip_address): tmp = ip_address.split(".") tmp.reverse() name = tmp.pop(0) - zone = ".".join(tmp) + ".in-addr.arpa" + zone = ".".join(tmp) + ".in-addr.arpa" return zone, name |