summaryrefslogtreecommitdiff
path: root/source3/utils
AgeCommit message (Collapse)AuthorFilesLines
2008-05-15net registry: refactor core of net_registry_getvalue() outMichael Adam1-3/+9
into net_registry_getvalue_internal(), which takes a bool parameter "raw" controlling the output format. Michael (This used to be commit 889e19303e141e226898f837a637a2d591c75ad9)
2008-05-15net_registry: add raw output of value to print_registry_value().Michael Adam4-14/+37
Michael (This used to be commit 340a706422cbca45cc63fa94d36c88f6751f4f31)
2008-05-15net: Fix net lookup dsgetdcname, no need to pull site ourselves.Günther Deschner1-12/+2
Guenther (This used to be commit 954d0998c2c00140addb6ba3845e80ed91e4effc)
2008-05-15testparm: list registry shares with testparm.Michael Adam1-1/+1
I.e., use lp_load_with_registry_shares() instead of lp_load(). Michael (This used to be commit 95339c0c1ecc49049f1fc176f72a1dcac639e06d)
2008-05-12net ads: Upper case he realm name when calling kinit() using machine creds.coffeedude1-0/+1
Needed fix for the DNS Update option as part of "net ads join" (This used to be commit aebae0b71b427838fdc6344d69d6dea87a5dd58b)
2008-05-10Fix the build with DNS_UPDATESVolker Lendecke1-1/+1
(This used to be commit 6c9500c290fe0d6d71d4c33eb265906ce3a1d9f3)
2008-05-10net: more whitespace cleanupKai Blin16-795/+795
(This used to be commit ef0184d580500734fc7af51e1c790b075180a3d0)
2008-05-10net: Remove globalsKai Blin29-1476/+1768
(This used to be commit 1e9319cf88b65a2a8d4f5099a1fe5297e405ed2e)
2008-05-10net: Some whitespace clean-up.Kai Blin2-40/+40
(This used to be commit 4dcce8b653671c8ce907f8353df1db8a5c8f8e19)
2008-05-10net: Fix usage string.Kai Blin1-1/+1
(This used to be commit e3470e9a1b19c239d6fa576f8c8c1a5a5c3b5d3c)
2008-05-09dsgetdcname: use existing messaging_context if possible.Günther Deschner1-1/+1
Guenther (This used to be commit 7889516a384c155a9045aad4409c041fddd0d98d)
2008-05-09cldap: let ads_cldap_netlogon() return all possible cldap replies.Günther Deschner1-2/+2
Guenther (This used to be commit 6f9d5e1cc94bc90685b54c04622b8f3357bd2f69)
2008-05-08Yay ! Remove a VFS entry. Removed the set_nt_acl() call,Jeremy Allison1-2/+0
this can only be done via fset_nt_acl() using an open file/directory handle. I'd like to do the same with get_nt_acl() but am concerned about efficiency problems with "hide unreadable/hide unwritable" when doing a directory listing (this would mean opening every file in the dir on list). Moving closer to rationalizing the ACL model and maybe moving the POSIX calls into a posix_acl VFS module rather than having them as first class citizens of the VFS. Jeremy. (This used to be commit f487f742cb903a06fbf2be006ddc9ce9063339ed)
2008-05-05Fix client authentication with -P switch in client tools (Bug 5435).Günther Deschner3-2/+33
Guenther (This used to be commit d077ef64cd1d9bbaeb936566c2c70da508de829f)
2008-04-30Fix typo noticed by David Disseldorp <ddiss@sgi.com>. AF_INET should be ↵Jeremy Allison1-1/+1
AF_INET6 in this case. Jeremy. (This used to be commit 767740a914c7ebeb88886f520380b7fa365e315d)
2008-04-25Move user/domain from rpc_pipe_client to cli_pipe_auth_dataVolker Lendecke1-3/+7
(This used to be commit 42de50d2cd43e760d776694f7b5f003ba51d7f84)
2008-04-23Correctly initialize lp_load in smbstatus in the presence of registry on tdb2Volker Lendecke1-4/+16
(This used to be commit c4f7bee9238db536a7d5215cebb0bf37f757dfad)
2008-04-23libsmbconf: rewrite API to use smbconf_service structMichael Adam1-59/+37
instead of lists of strings and counters directly... Michael (This used to be commit 17415e2dc457ce41793a7e28e71f72c538c19c61)
2008-04-21Remove the "pwd" struct from rpc_pipe_clientVolker Lendecke1-2/+7
The only user of this was decrypt_trustdom_secret, and this only needs the NT hash anyway. (This used to be commit 3d8c2a47e677a4c4aacf4abf148b1bd8163c3351)
2008-04-21net: Add libnetapi context to net's impressive list of globals.Günther Deschner3-11/+8
Guenther (This used to be commit 8a5fadf6a183e4e4ccc77283b3ddba0748c6abfb)
2008-04-21cldap: avoid duplicate definitions so remove ads_cldap.h.Günther Deschner1-10/+10
Guenther (This used to be commit 538eefe22ad69540b9f73ffaa613d6be045de199)
2008-04-21cldap: add talloc context to ads_cldap_netlogon().Günther Deschner1-2/+2
Guenther (This used to be commit 4cee7b1bd5cd97c414b73d6f39238958480cdcf3)
2008-04-21libads: Use libnbt for CLDAP reply parsing.Günther Deschner1-24/+21
Guenther (This used to be commit 751f3064a508341c0ebae45e8de9f5311d915d70)
2008-04-20Introduce rpc_pipe_np_smb_conn()Volker Lendecke1-10/+11
This abstracts away all references to rpc_pipe_client->cli, the only reference is now in cli_pipe.c. (This used to be commit c56e1c08cef107ff33a34346ceeca3475a102b19)
2008-04-20Replace cli_rpc_pipe_close by a talloc destructor on rpc_pipe_structVolker Lendecke6-23/+19
(This used to be commit 99fc3283c4ecc791f5a242bd1983b4352ce3e6cf)
2008-04-20Use rpc_pipe_client->user_name instead of rpc_pipe_client->cli->user_nameVolker Lendecke1-3/+3
Also make sure that rpc_pipe_client->user_name is always talloced. (This used to be commit 3f6c5b99664a75a6f490ee3b6980b89cacf7f579)
2008-04-20Move srv_name_slash from cli_state to rpc_pipe_clientVolker Lendecke1-6/+6
(This used to be commit a9061e52e1ff8e31aa480f4a30cda64c9d93214e)
2008-04-20Add "desthost" to rpc_pipe_clientVolker Lendecke6-39/+40
This reduces the dependency on cli_state (This used to be commit 783afab9c891dd7bcb78895b2a639b6f3a0edf5b)
2008-04-17Fix gcc uninitialized variable used warning.Jeremy Allison1-6/+5
Jeremy. (This used to be commit b95f2adeb5e2f7ce71e46e6a6165159483c9a702)
2008-04-17net: Be more tolerant while joining.Günther Deschner1-4/+9
Guenther (This used to be commit 70b7b331d9e2d915e6209fca5900f41fae4866fd)
2008-04-16net: Remove unused rpc_user_add/del_internals code.Günther Deschner1-257/+0
Guenther (This used to be commit e68daef0ee051515c8f489820fde9110747e8aa6)
2008-04-16net: Use NetUserAdd for "net rpc user add".Günther Deschner1-2/+28
Guenther (This used to be commit 4868b4ea1a18d4218330c49bf57818c4b5117d1d)
2008-04-16net: use NetUserDel for "net rpc user delete".Günther Deschner1-3/+31
Guenther (This used to be commit 0105770c1598e6fcbcaa29e17f3b7fd33114a333)
2008-04-16net/libnetapi: Include netapi headers early and free on exit.Günther Deschner3-3/+9
Guenther (This used to be commit 020b1e6431601fadf44dbfe8393908c096ecfa4c)
2008-04-15net conf: adapt output of NULL share params in net conf list.Michael Adam1-2/+7
don't list NULL share name and don't indent these parameters Michael (This used to be commit 0212b38913945ce3c8b14734804d81f1cd315621)
2008-04-15net conf: simplify logic in test output of net conf import.Michael Adam1-9/+5
Michael (This used to be commit 367c8b133b2f3e73155f20f689602909eef9827b)
2008-04-15net conf: fix output of out-of-share parameters in test mode importMichael Adam1-4/+12
Michael (This used to be commit 5424e07e7d3e842488cba7ae389124f01221c5ba)
2008-04-14libnetjoin/net: Fix lp_config_backend_is_registry() handling.Günther Deschner1-6/+12
Thanks obnox, now we can net ads join and net ads leave with zero configuration changes if "config backend = registry". Guenther (This used to be commit 9003881773de787a51ceadcdc2cb1e95f6979763)
2008-04-14net: abort when lp_realm is not set in net_ads_leave().Günther Deschner1-0/+5
Guenther (This used to be commit 53735edcbb059e73c51ae17d4ff75d2a4dee53e5)
2008-04-14net: exit early in net_ads_join() if the domain is not set.Günther Deschner1-0/+6
Guenther (This used to be commit 8331fbe735e2bec386ab8fc1645dc371d45d3063)
2008-04-14net: use WERROR for check_ads_config().Günther Deschner1-9/+7
Guenther (This used to be commit 9176057986be63c7ebebb56f7daabbc3883802c5)
2008-04-14net: the success of secrets_init is checked by libnetjoin now.Günther Deschner1-6/+0
Guenther (This used to be commit 0a6a5d082426ca82accf18fffa7740683a42cac1)
2008-04-13net conf: use the new smbconf_init() dispatcher instead of explicit backend ↵Michael Adam1-2/+9
init. Michael (This used to be commit 281c9287a34533045b62302bb33ced3d216421ac)
2008-04-13libsmbconf: remove the bool verbatim parameter from txt backend init function.Michael Adam1-1/+1
Always be verbatim for now. Backend config options may be added later via some private data pointer. Michael (This used to be commit e8bafcfbf4a7ab1dc1ce4f2acd24b0eb74933256)
2008-04-13Fix the build of eventlogadm.Günther Deschner1-1/+1
Guenther (This used to be commit 57a5628abf628b6276f36da8ae1f3c15a4db4488)
2008-04-13net registry: remove superfluous regdb_close().Michael Adam1-2/+0
Michael (This used to be commit d4e74036d3b8c5de4ce130eab7fc775e3cb746d5)
2008-04-13registry: change registry_init_basic() to return WERROR instead of boolMichael Adam1-1/+1
Michael (This used to be commit 6a31e659cb371395dff0906786f3c6ef0cc2b3de)
2008-04-11net_idmap: use wbcSet[U|G]idMapping() and wbcSet[U|G]idHwm() functionsStefan Metzmacher1-19/+27
metze (This used to be commit dc9a3f8db0af03b4e8223068857092fcaff404f2)
2008-04-11Cleanup size_t return values in convert_string_allocateTim Prouty1-4/+3
This patch is the first iteration of an inside-out conversion to cleanup functions in charcnv.c returning size_t == -1 to indicate failure. (This used to be commit 59124382d2894a1b194b48dd82bc5f956959eb48)
2008-04-10objectclass -> objectClassKarolin Seeger1-3/+3
Karolin (This used to be commit b865b8a79afd8f3b43bb3adcdcbcbca623dc76a2)