When creating a group via a script, don't let winbind do it as well.
authorVolker Lendecke <vlendec@samba.org>
Tue, 17 Feb 2004 21:25:42 +0000 (21:25 +0000)
committerVolker Lendecke <vlendec@samba.org>
Tue, 17 Feb 2004 21:25:42 +0000 (21:25 +0000)
Volker
(This used to be commit 6a229f1488c2f0935c24e223614e4c88b36d15c0)

source3/groupdb/mapping.c

index 048a6c5db053ff5fbcd393ff6d375eff1066d33e..71ef38e6c8ab3ee5ec8f9995c39f2dfca5c1d0f5 100644 (file)
@@ -838,11 +838,9 @@ int smb_create_group(char *unix_group, gid_t *new_gid)
                        
                        close(fd);
                }
-       }
 
-       /* Try winbindd */
+       } else if ( winbind_create_group( unix_group, NULL ) ) {
 
-       if ( winbind_create_group( unix_group, NULL ) ) {
                DEBUG(3,("smb_create_group: winbindd created the group (%s)\n",
                        unix_group));
                ret = 0;