summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2012-10-15 16:01:26 +0300
committerMartin Kosek <mkosek@redhat.com>2012-10-16 09:05:55 +0200
commit2d7f2928b9e66e8870262a30c4f542951f869796 (patch)
tree7ff22af3a2edd9c6d3f9b2e8e51c96e7d2e0ac30 /ipaserver
parent5c054a77f30631016120a7987a1f28ae63b6da33 (diff)
downloadfreeipa-2d7f2928b9e66e8870262a30c4f542951f869796.tar.gz
freeipa-2d7f2928b9e66e8870262a30c4f542951f869796.tar.xz
freeipa-2d7f2928b9e66e8870262a30c4f542951f869796.zip
Remove bogus check for smbpasswd
We don't use smbpasswd when configuring IPA for AD trusts anymore because we switched to use Kerberos authentication in IPA passdb backend based on CIFS service keytab. https://fedorahosted.org/freeipa/ticket/3181
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/adtrustinstance.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/adtrustinstance.py b/ipaserver/install/adtrustinstance.py
index b74f4b685..b3602ddce 100644
--- a/ipaserver/install/adtrustinstance.py
+++ b/ipaserver/install/adtrustinstance.py
@@ -60,9 +60,9 @@ and re-run ipa-adtrust-instal again afterwards.
"""
def check_inst():
- for smbfile in ['/usr/sbin/smbd', '/usr/bin/net', '/usr/bin/smbpasswd']:
+ for smbfile in ['/usr/sbin/smbd', '/usr/bin/net']:
if not os.path.exists(smbfile):
- print "%s was not found on this system" % file
+ print "%s was not found on this system" % smbfile
print "Please install the 'samba' packages and " \
"start the installation again"
return False