summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2012-10-09 11:03:00 +0200
committerMartin Kosek <mkosek@redhat.com>2012-10-09 12:15:07 +0200
commit2411377d400f61f458a77bc2c64f721a629b1e3e (patch)
treec13e40d244182cd2d602a27acd2ab474210a53b7 /ipaserver
parent19a9376c72b1d17123f3ab1ad5a20480f725b90d (diff)
downloadfreeipa-2411377d400f61f458a77bc2c64f721a629b1e3e.tar.gz
freeipa-2411377d400f61f458a77bc2c64f721a629b1e3e.tar.xz
freeipa-2411377d400f61f458a77bc2c64f721a629b1e3e.zip
Minor fixes for default SMB group
This patch contains additional minor fixes which were proposed during review but were not pushed (accidentaly). Also amends a name of the default SMB group in a list of protected groups in group.py. https://fedorahosted.org/freeipa/ticket/3147
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 41030223d..d86f9f514 100644
--- a/ipaserver/install/adtrustinstance.py
+++ b/ipaserver/install/adtrustinstance.py
@@ -238,8 +238,8 @@ class ADTRUSTInstance(service.Service):
try:
self.admin_conn.getEntry(fb_group_dn, ldap.SCOPE_BASE)
except errors.NotFound:
- self.print_msg("Failed to add fallback group.")
- return
+ self.print_msg("Failed to add fallback group.")
+ return
try:
mod = [(ldap.MOD_ADD, self.ATTR_FALLBACK_GROUP, fb_group_dn)]