summaryrefslogtreecommitdiff
path: root/docs/docbook/manpages
AgeCommit message (Collapse)AuthorFilesLines
2002-07-15updated the 3.0 branch from the head branch - ready for alpha18Andrew Tridgell11-592/+629
(This used to be commit 03ac082dcb375b6f3ca3d810a6a6367542bc23ce)
2002-04-16merge from HEADGerald Carter1-1/+1
(This used to be commit c72db22a3f2d823b5ac30066ed53f5edb2b69495)
2002-04-143 branches might become a pain... :-)Volker Lendecke1-2/+6
Volker (This used to be commit 8ecfed59a3905c25a708172bf39511a0b7637776)
2002-04-01* merges from SAMBA_2_2Gerald Carter1-0/+16
* addedd "private dir" to smb.conf.5.sgml * regenerated man pages, HOWTOs, etc... (This used to be commit 3b29006e35a991d20cda1c92d535ef016099d0d4)
2002-03-27Updated for long flags from popt conversion, as well as version number.Jim McDonough1-10/+11
Once again, can someone run docbook on this? (This used to be commit dc77ad423da65cc1135674085494a28678ec4b6f)
2002-03-27Update smbstatus manpage source. Includes corrections of some flags,Jim McDonough1-10/+25
addition of long flags from conversion to popt, and update of the version number. Can someone with working docbook do the magic to this thing? (This used to be commit e074f10622329ba6588078f8c640fbc29f536c5b)
2002-03-23Documentation updates.Andrew Bartlett1-4/+58
(This used to be commit 9a9e4e92ae079eb906dcc7123df092f4917b5dad)
2002-02-19merge from 2.2Gerald Carter1-15/+7
(This used to be commit 8b357e6551c3a91aa7017ae8dcf38558f15f1c0b)
2002-02-04removed several parameters ("client code page", "valid chars",Gerald Carter1-250/+0
"code page directory", "character set", et. al.) (This used to be commit 6ff236249559f8a11381cab9cc1757b26764a39d)
2002-01-27merge from 2.2 and regenerateGerald Carter1-8/+64
(This used to be commit 55c53ef08974947cf10a79882b63d6d8e8baad4c)
2002-01-24merge from 2.2Gerald Carter3-215/+21
(This used to be commit 2137c7163475691056fe1701b75128e238520b05)
2002-01-20Vance and his eagle eyes spotted a copy and paste error in my smb.conf updates.Andrew Bartlett1-11/+0
Thanks! Andrew Bartlett (This used to be commit 7f7a53e8489f97ced28936252eca322c09b01d61)
2002-01-20This is another *BIG* change...Andrew Bartlett2-72/+83
Samba now features a pluggable passdb interface, along the same lines as the one in use in the auth subsystem. In this case, only one backend may be active at a time by the 'normal' interface, and only one backend per passdb_context is permitted outside that. This pluggable interface is designed to allow any number of passdb backends to be compiled in, with the selection at runtime. The 'passdb backend' paramater has been created (and documented!) to support this. As such, configure has been modfied to allow (for example) --with-ldap and the old smbpasswd to be selected at the same time. This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua. These two backends accept 'non unix accounts', where the user does *not* exist in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to avoid conflicts in the algroitmic mapping of RIDs, they use the values specified in the 'non unix account range' paramter - in the same way as the winbind ranges are specifed. While I was at it, I cleaned up some of the code in pdb_tdb (code copied directly from smbpasswd and not really considered properly). Most of this was to do with % macro expansion on stored data. It isn't easy to get the macros into the tdb, and the first password change will 'expand' them. tdbsam needs to use a similar system to pdb_ldap in this regard. This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I don't have the test facilities for these. I plan to incoroprate at least pdb_ldap into this scheme after consultation with Jerry. Each (converted) passdb module now no longer has any 'static' variables, and only exports 1 init function outside its .c file. The non-unix-account support in this patch has been proven! It is now possible to join a win2k machine to a Samba PDC without an account in /etc/passwd! Other changes: Minor interface adjustments: pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*. pdb_update_sam_account() no longer takes the 'override' argument that was being ignored so often (every other passdb backend). Extra checks have been added in some places. Minor code changes: smbpasswd no longer attempts to initialise the passdb at startup, this is now done on first use. pdbedit has lost some of its 'machine account' logic, as this behaviour is now controlled by the passdb subsystem directly. The samr subsystem no longer calls 'local password change', but does the pdb interactions directly. This allow the ACB_ flags specifed to be transferred direct to the backend, without interference. Doco: I've updated the doco to reflect some of the changes, and removed some paramters no longer applicable to HEAD. (This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-18This is the 'winbind default domain' patch from Alexander BokovoyAndrew Bartlett2-1/+32
<a.bokovoy@sam-solutions.net>. The idea is the domain\username is rather harsh for unix systems - people don't expect to have to FTP, SSH and (in particular) e-mail with a username like that. This 'corrects' that - but is not without its own problems. As you can see from the changes to files like username.c and wb_client.c (smbd's winbind client code) a lot of assumptions are made in a lot of places about lp_winbind_seperator determining a users's status as a domain or local user. The main change I will shortly be making is to investigate and kill off winbind_initgroups() - as far as I know it was a workaround for an old bug in winbind itself (and a bug in RH 5.2) and should no longer be relevent. I am also going to move to using the 'winbind uid' and 'winbind gid' paramaters to determine a user/groups's 'local' status, rather than the presence of the seperator. As such, this functionality is recommended for servers providing unix services, but is currently less than optimal for windows clients. (TODO: remove all references to lp_winbind_seperator() and lp_winbind_use_default_domain() from smbd) Andrew Bartlett (This used to be commit 07a21fcd2311d2d9b430b99303e3532a8c1159e4)
2002-01-11commit some changes for ab, and keep working on the smbgroupeditGerald Carter1-26/+217
manpage. (This used to be commit a10cdbfbed4e04609f511cbbf976df4b4d391729)
2002-01-10Take a stab at keeping the doco current :-)Andrew Bartlett1-0/+16
(This used to be commit 88b0e670426c216d754716dc6095b673b9645f1a)
2002-01-08I think I've finally gotten this straighten out in my tree.Gerald Carter1-5/+4
All should be curent now. (This used to be commit 91662683e3e690fb69f333fadf0f317c53995ba7)
2002-01-08i **really** hate stuck tags in CVS :-( Figured out whyGerald Carter2-0/+145
my files were not being checked in sometimes..... cvs update -A cleared all the sticky tages and now I have to recheck some things in. j- (This used to be commit 241f4a548d57083b153afafafdd18ed5de5412b7)
2002-01-05merge from 2.2 and regenerate docsGerald Carter2-11/+16
(This used to be commit f7d900873c3553dde88d42d903b74dc49c9a6c71)
2002-01-02the pdbedit tool manpageSimo Sorce1-0/+291
(This used to be commit 4aecb650e1ece234fb7359270deb74fe1c1a4a16)
2001-12-29Documented -i modes for nmbd/smbd.Jeremy Allison2-0/+22
Jeremy. (This used to be commit a076e2e4c512cd2ef2f9c38447c44d93e4b6ac57)
2001-12-20 update from VanceGerald Carter1-1/+8
(This used to be commit fe7ad3761233f7adb13756d611a11dbf0594b77f)
2001-12-06merge from 2.2Gerald Carter7-140/+343
(This used to be commit c5ee06b7c8fc9f1fec679acc7d7f47f333707456)
2001-11-29Added close-share message.Jeremy Allison1-1/+10
Jeremy. (This used to be commit 6a10accbcaa130b51381d43cb10c55e86ba2a320)
2001-10-10Merge from 2.2Tim Potter1-1/+1
(This used to be commit c6a01f0a67148a234175439bdfe439ae011d397d)
2001-10-10mega-merge from 2.2Gerald Carter20-501/+689
(This used to be commit c76bf8ed3275e217d1b691879153fe9137bcbe38)
2001-09-18Doc fix merge from 2.2Tim Potter1-10/+0
(This used to be commit 865167203ceff157a7204418cda8905833314575)
2001-09-14Update manpage for new 'add machine script' paramaterAndrew Bartlett1-0/+20
(This used to be commit 68dc525e8e7906a8618b6d28c5543ce89768563d)
2001-09-11Fixed some bad markup.Tim Potter1-2/+2
(This used to be commit f66899965ea3d9677ba75dff56df2319b3e4b7c0)
2001-09-11Standardised on 'var = value' when referencing smb.conf parameters, ratherTim Potter1-39/+39
than 'var=value'. Fixed up some dodgy quoting on the way. (This used to be commit 0606c194d6e3aba0c1aac883fe04e0c6e9e9a578)
2001-09-11fix typoHerb Lewis2-2/+2
(This used to be commit 51795ca3509d9f1a076fae902211ebad02897c72)
2001-08-26Change default 'name resolve order' to WINS before DNS.Volker Lendecke1-1/+1
Volker (This used to be commit 5fc8c51983f36b0b2bbb2704a522026dc64d0b65)
2001-08-22Mention 'delete veto files' in 'veto files' descriptionVolker Lendecke1-7/+8
Volker (This used to be commit ef5c09eebe29161920536cbe708b10659a77386e)
2001-08-22Fixed typo.Volker Lendecke1-1/+1
Volker (This used to be commit 880c1cc751d017886bcd175eefa3d547a0f99c43)
2001-08-21Fixed a little typo.Volker Lendecke1-1/+1
Volker (This used to be commit a1e97aafe54a2960409637d67af847420b003ec8)
2001-08-06Record the NT_STATUS constant rather than its number in the logfilesAndrew Bartlett1-1/+1
Fix typo in lmhosts manpage (This used to be commit 9fff946cf113b4858b730f5ba644d5648ba95027)
2001-07-19Added some documentation for using -U with -j in order to join a domainTim Potter1-40/+56
without first having to create an account using the server manager. (This used to be commit 5edfb53d7c3fe809256f080d5cd46ebc62c194fb)
2001-06-27Added doco for the -d parameter.Tim Potter1-0/+10
(This used to be commit d8598efb5712c35cc0b59b4e232e3869077d11eb)
2001-06-18Fixed typo in nmblookup example.Tim Potter1-1/+1
(This used to be commit d11c871fc5480e8ba3846e1de9a2f1834d535325)
2001-06-08syc up docs with 2.2Gerald Carter1-106/+0
(This used to be commit 1e1a8ad528256f7e977534f25af6c250ab6a2a83)
2001-06-06Correction to winbind nss library install process. So how do I update theTim Potter1-2/+6
manual/html pages??? (This used to be commit 73055f3f7d211ff6e45e46a56b0ea0614e78966d)
2001-06-01syncing up with SAMBA_2_2Gerald Carter8-244/+642
(This used to be commit 1bc58c21b15fcdb0a504d051f60e20c4e24441e6)
2001-05-29The manual page for swat referred to nmblookup in the synopsis.Tim Potter1-1/+1
(This used to be commit ab05c8cf1b4b8f56974f358781011c922380fe45)
2001-04-28fixed %u/%U exampleAndrew Tridgell1-1/+1
(This used to be commit 40e7834bb9c7440feba250832c3b85757ae4c9f9)
2001-04-19merge from 2.2Gerald Carter9-993/+1638
(This used to be commit 6270765ed5d4e94d34af6d512f17f403b9624699)
2001-02-28fixed typoGerald Carter1-1/+1
(This used to be commit fb512aee768787f06d4787cc7c284f2f9aa82aa5)
2001-02-23couple of updates to remove error message when generatingGerald Carter3-12/+12
man pages (This used to be commit caea759c9b4aa9920d3f4034c092e2bade8dde49)
2001-02-23last files converted!!! Yah!!!! :-)Gerald Carter2-904/+1409
(This used to be commit 435dbd0535dda564523521db1a820a84ad6d96e3)
2001-02-23more updates. Conversion almost done. 2 more man pagesGerald Carter5-743/+1564
(then all the ASCII stuff) (This used to be commit 7247027e833616bfe9350253cc1e6cdb236b2cdf)
2001-02-23I'm just checking these in. There not done.Gerald Carter5-0/+951
(This used to be commit 03f85cf3c80e8bb93d698da0a17ac61d0da91950)