1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-27 07:42:04 +03:00
Commit Graph

152 Commits

Author SHA1 Message Date
3b7f8a759f s3:docs: Fix typo in man mount.cifs.
Fix bug #6844 (wrong credential file format in mount.cifs manpage).
Thanks to the Debian Samba package maintainers for reporting!

Karolin
2009-11-30 14:53:23 +01:00
354038f170 s3/docs: Document new pdbedit -K option.
Karolin
2009-10-27 16:04:35 +01:00
6a9e88e08b s3/docs: Add missing meta data to man ldbrename.
Avoid warnings.

Karolin
2009-10-15 12:27:24 +02:00
0c37c23869 docs: document wbinfo -c.
Guenther
2009-10-13 12:42:44 +02:00
f394b5bc68 docs: document wbinfo -t --domain DOMAIN behavior.
Guenther
2009-10-13 12:42:24 +02:00
faad888e1a ѕ3: fix domain trust documentation confusion
fix some trusted/trusting mixups, make documentation more precise
and man page more verbose.
2009-10-12 22:42:27 +02:00
5eb14b2994 s3-docs: remove xml artefact from net.8.xml.
Guenther
2009-10-12 14:37:54 +02:00
a224392649 s3:docs: Add info about how to obtain cifs module in cifs mount helper manpage 2009-09-09 23:11:06 +02:00
9aa11fdf69 s3/docs: Raise version number.
Karolin
2009-09-08 15:40:48 +02:00
da99e3a724 cifs.upcall: make using ip address conditional on new option
Igor Mammedov pointed out that reverse resolving an IP address to get
the hostname portion of a principal could open a possible attack
vector. If an attacker were to gain control of DNS, then he could
redirect the mount to a server of his choosing, and fix the reverse
resolution to point to a hostname of his choosing (one where he has
the key for the corresponding cifs/ or host/ principal).

That said, we often trust DNS for other reasons and it can be useful
to do so. Make the code that allows trusting DNS to be enabled by
adding --trust-dns to the cifs.upcall invocation.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
2009-08-26 06:26:02 -04:00
b10bdef4e7 cifs.upcall: try getting a "cifs/" principal and fall back to "host/"
cifs.upcall takes a "-c" flag that tells the upcall to get a principal
in the form of "cifs/hostname.example.com@REALM" instead of
"host/hostname.example.com@REALM". This has turned out to be a source of
great confusion for users.

Instead of requiring this flag, have the upcall try to get a "cifs/"
principal first. If that fails, fall back to getting a "host/"
principal.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
2009-08-14 07:59:50 -04:00
34c535c9a8 docs: fix typos in the net man page.
Noted by Oota Toshiya <t-oota@dh.jp.nec.com> .

Michael
2009-07-27 13:35:59 +02:00
31bd62727d docs: flesh out options section of umount.cifs manpage
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
2009-07-08 07:43:43 -04:00
9aebdc2501 mount.cifs: clarify mapchars option
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
2009-07-07 16:35:06 -04:00
91e020fca1 doc: clarify that mount.cifs never uses smb.conf
For some users who are used to smbclient, it is not clear that
mount.cifs never uses smb.conf for configuring client specific
parameters. So, let's add this information to mount.cifs man page.

Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de>
2009-07-06 06:31:30 -04:00
5a4d618109 s3: forward MSG_DEBUG from smbd parent to all children
Before 3.3, an smbcontrol debug message sent to the target "smbd" would
actually be sent to all running processes including nmbd and winbindd.
This behavior was changed in 3.3 so that the "smbd" target would only
send a message to the process found in smbd.pid, while the "all" target
would send a message to all processes.

The ability to set the debug level of all processes within a single
daemon, without specifying each pid is quite useful.  This was implemented
in winbindd in 065760ed.  This patch does the same thing for smbd.

Upon receiving a MSG_DEBUG the parent smbd will rebroadcast it to all of
its children.

The printing process has been added to the list of smbd child processes,
and we now always track the number of smbd children regardless of the
"max smbd processes" setting.
2009-06-22 19:09:37 -07:00
e912764a5e s3/docs: Add documentation for 'net sam rights'.
This is part of a fix for bug #6328.

Karolin
2009-06-18 09:32:10 +02:00
2f884753dd s3-docs: fix typo in pam_winbind.8.
Guenther
2009-06-16 11:49:36 +02:00
ed5c270b75 Fix the section of the pam_winbind manpage.
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-06-15 13:01:28 +02:00
59ab1574e4 Move pam_winbind to the right manpage section (8).
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-06-15 13:01:23 +02:00
1809ff4b23 Dcoument the PAM data exports in the pam_winbind manpage.
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-06-15 13:01:18 +02:00
779eea49de Document the try_first_pass option in the pam_winbind manpage.
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-06-15 13:01:13 +02:00
24f9f32fed Add a synopsis section to the pam_winbind manpage.
Signed-off-by: Andreas Schneider <mail@cynapses.org>
2009-06-15 13:01:08 +02:00
27fcab98e7 mount.cifs: update the mount.cifs manpage
Add a new section entitled FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS
that attempts to cover information about this topic. Change the uid=
and gid= options to refer to that section. Add new varlistentries for
forceuid, forcegid and dynperm.

Also update the information about how the program behaves when installed
as a setuid binary.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
2009-06-07 08:38:25 -04:00
ba4d51c521 Fix bug #2356 - smbclient -t <term code> no longer works.
Removed code and docs.
Jeremy.
2009-06-03 09:44:49 -07:00
bd11948107 Add a smbclient "readlink" command and add docs for it.
Jeremy.
2009-05-27 22:02:20 -07:00
73eaff7a39 s3/docs: Fix typo in man idmap_rid.
Karolin
2009-05-26 14:16:46 +02:00
fe474861f8 s3-docs: document "net dom renamecomputer".
Guenther
2009-05-11 10:56:22 +02:00
4a4dc776b2 s3/docs: Remove unnecessary .sp.
Karolin
2009-05-06 16:06:59 +02:00
e398f1e915 s3-docs: Fix Bug #6331. Document "net dom join/net dom unjoin".
Guenther
2009-05-06 15:45:53 +02:00
bf197a9c0a s3-docs: Fix "net eventlog dump" syntax in manpage.
Guenther
2009-05-06 15:45:25 +02:00
664ff081ca s3-docs: document "net eventlog" in net manpage.
Guenther
2009-04-29 11:47:34 +02:00
cdbbc81bad s3:docs: document the --request-timeout option of net
metze
2009-04-17 21:46:48 +02:00
5517c0bcdd s3-docs: document warn_pwd_expire pam_winbind option in manpage.
Andreas, please check.

Guenther
2009-04-17 01:32:44 +02:00
c4ad3e57ff s3/docs: Raise version number up to 3.5.
Karolin
2009-04-07 20:45:45 +02:00
c002c1d776 s3/docs: Fix typo.
Karolin
2009-04-07 20:05:21 +02:00
191152daa1 Document the dirsort module 2009-03-22 11:44:14 +01:00
2d1fcdc807 fix some typos
Signed-off-by: Michael Adam <obnox@samba.org>
2009-03-19 12:08:55 +01:00
3d280639c4 Add a vfs_preopen module to hide fs latencies 2009-03-10 18:11:56 +01:00
09a7f93f6b s3/docs: Fix typo in man mount.cifs.
Thanks to Tobias Stoeckmann for reporting!

Karolin
2009-02-23 09:24:50 +01:00
4e5997736c For some unknown reason ldbrename was not being built in samba3. 2009-02-22 01:16:46 -05:00
27307be0f7 s3/docs: Add hint about getfattr in man vfs_acl_xattr.
Karolin
2009-02-20 14:14:54 +01:00
0fd1d4c090 s3/docs: Add man vfs_acl_tdb.
Karolin
2009-02-20 13:32:44 +01:00
3b0114c0ba s3/docs: Add man vfs_acl_xattr.
Karolin
2009-02-20 13:32:22 +01:00
b1b9be46ab docs: extend the example in the idmp_rid manpage to configure 2 domains with rid
Michael
2009-02-17 18:21:54 +01:00
74940606f7 docs: extend the idmap_rid manpage
Michael
2009-02-17 18:21:54 +01:00
4261cae2eb Enable total anonymization in vfs_smb_traffic_analyzer, by mapping any user names to the one given by anonymize_prefix, without generating a hash number. This setting is optional and is compatible with the module configuration format of Samba 3.3. 2009-02-13 17:22:25 -08:00
cc51cbc862 docs: Add man sharesec.
Karolin
2009-02-09 21:01:29 +01:00
145fe37766 docs: fix two typos in the mount.cifs manpage
Michael
2009-02-06 10:20:09 +01:00
63bb31e118 s3-docs: add documentation for dump option of eventlogadm.
Guenther
2009-02-03 16:06:57 +01:00