r23368: Make "winbind:rpc only" a full blown parameter. Thanks to Karolin for
authorVolker Lendecke <vlendec@samba.org>
Wed, 6 Jun 2007 13:02:24 +0000 (13:02 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:23:10 +0000 (12:23 -0500)
the patch :-)
(This used to be commit 07b71a02aef15b75d281cabeb7140db1bc0bb283)

source3/nsswitch/winbindd_cache.c
source3/param/loadparm.c

index d1c34100ca29a7a5ff8a4b9baa59e6487f599d98..017a2ebfebb8c9973b59c0624fe1b3daff31187c 100644 (file)
@@ -170,7 +170,7 @@ static struct winbind_cache *get_cache(struct winbindd_domain *domain)
 
                if ((our_domain->active_directory || IS_DC)
                    && domain->active_directory
-                   && !lp_parm_bool(-1, "winbind", "rpc only", False)) {
+                   && !lp_winbind_rpc_only()) {
                        DEBUG(5,("get_cache: Setting ADS methods for domain %s\n", domain->name));
                        domain->backend = &ads_methods;
                } else {
index da2a7d1c68deb7d661a7345cadb9ba0848d295a3..9d8b7b195b09b3b8f926d4453af1bc9065d28d03 100644 (file)
@@ -180,6 +180,7 @@ typedef struct {
        BOOL bWinbindRefreshTickets;
        BOOL bWinbindOfflineLogon;
        BOOL bWinbindNormalizeNames;
+       BOOL bWinbindRpcOnly;
        char **szIdmapDomains;
        char **szIdmapBackend; /* deprecated */
        char *szIdmapAllocBackend;
@@ -1289,6 +1290,7 @@ static struct parm_struct parm_table[] = {
        {"winbind refresh tickets", P_BOOL, P_GLOBAL, &Globals.bWinbindRefreshTickets, NULL, NULL, FLAG_ADVANCED}, 
        {"winbind offline logon", P_BOOL, P_GLOBAL, &Globals.bWinbindOfflineLogon, NULL, NULL, FLAG_ADVANCED},
        {"winbind normalize names", P_BOOL, P_GLOBAL, &Globals.bWinbindNormalizeNames, NULL, NULL, FLAG_ADVANCED},
+       {"winbind rpc only", P_BOOL, P_GLOBAL, &Globals.bWinbindRpcOnly, NULL, NULL, FLAG_ADVANCED},
 
        {NULL,  P_BOOL,  P_NONE,  NULL,  NULL,  NULL,  0}
 };
@@ -1899,6 +1901,7 @@ FN_GLOBAL_BOOL(lp_winbind_nested_groups, &Globals.bWinbindNestedGroups)
 FN_GLOBAL_BOOL(lp_winbind_refresh_tickets, &Globals.bWinbindRefreshTickets)
 FN_GLOBAL_BOOL(lp_winbind_offline_logon, &Globals.bWinbindOfflineLogon)
 FN_GLOBAL_BOOL(lp_winbind_normalize_names, &Globals.bWinbindNormalizeNames)
+FN_GLOBAL_BOOL(lp_winbind_rpc_only, &Globals.bWinbindRpcOnly)
 
 FN_GLOBAL_LIST(lp_idmap_domains, &Globals.szIdmapDomains)
 FN_GLOBAL_LIST(lp_idmap_backend, &Globals.szIdmapBackend) /* deprecated */