diff options
author | Gerald Carter <jerry@samba.org> | 2003-04-26 17:22:13 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-04-26 17:22:13 +0000 |
commit | 013fa338a27eda32dac92882e4fcd39218d8285e (patch) | |
tree | 4bf6da536d25ecfa9081864c56cf5de40d65adf7 /docs | |
parent | e82f3c4461bea78530003d7476bfe19e962521b4 (diff) | |
download | samba-013fa338a27eda32dac92882e4fcd39218d8285e.tar.gz samba-013fa338a27eda32dac92882e4fcd39218d8285e.tar.bz2 samba-013fa338a27eda32dac92882e4fcd39218d8285e.zip |
removing smbgroupedit manpage
(This used to be commit 4a0c02d133af6ea6f1009b81067974d6ad4fb404)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docbook/Makefile.in | 2 | ||||
-rw-r--r-- | docs/docbook/manpages/smbgroupedit.8.sgml | 229 | ||||
-rw-r--r-- | docs/htmldocs/smbgroupedit.8.html | 331 | ||||
-rw-r--r-- | docs/manpages/manpage.links | 0 | ||||
-rw-r--r-- | docs/manpages/manpage.refs | 39 | ||||
-rw-r--r-- | docs/manpages/smbgroupedit.8 | 148 |
6 files changed, 1 insertions, 748 deletions
diff --git a/docs/docbook/Makefile.in b/docs/docbook/Makefile.in index 0739f43f84..ce3d009f6c 100644 --- a/docs/docbook/Makefile.in +++ b/docs/docbook/Makefile.in @@ -21,7 +21,7 @@ MANPAGES_NAMES=findsmb.1 smbclient.1 \ smbpasswd.8 testprns.1 \ smb.conf.5 wbinfo.1 pdbedit.8 \ smbcacls.1 smbsh.1 winbindd.8 \ - smbgroupedit.8 vfstest.1 \ + vfstest.1 \ profiles.1 smbtree.1 ntlm_auth.1 \ editreg.1 smbcquotas.1 diff --git a/docs/docbook/manpages/smbgroupedit.8.sgml b/docs/docbook/manpages/smbgroupedit.8.sgml deleted file mode 100644 index 6c489bb785..0000000000 --- a/docs/docbook/manpages/smbgroupedit.8.sgml +++ /dev/null @@ -1,229 +0,0 @@ -<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN"> -<refentry id="smbgroupedit.8"> - -<refmeta> - <refentrytitle>smbgroupedit</refentrytitle> - <manvolnum>8</manvolnum> -</refmeta> - -<refnamediv> - <refname>smbgroupedit</refname> - <refpurpose>Query/set/change UNIX - Windows NT group mapping</refpurpose> -</refnamediv> - -<refsynopsisdiv> - <cmdsynopsis> - <command>smbroupedit</command> - <arg choice="opt">-v [l|s]</arg> - <arg choice="opt">-a UNIX-groupname [-d NT-groupname|-p privilege|]</arg> - </cmdsynopsis> -</refsynopsisdiv> - - - -<refsect1> - -<title>DESCRIPTION</title> - -<para> -This program is part of the <citerefentry><refentrytitle>Samba</refentrytitle> -<manvolnum>7</manvolnum></citerefentry> suite.</para> - -<para> -The smbgroupedit command allows for mapping unix groups -to NT Builtin, Domain, or Local groups. Also -allows setting privileges for that group, such as saAddUser, -etc. -</para> - -</refsect1> - -<refsect1> - <title>OPTIONS</title> - - <variablelist> - <varlistentry> - <term>-v[l|s]</term> - <listitem><para>This option will list all groups available - in the Windows NT domain in which samba is operating. - </para> - - <variablelist> - <varlistentry> - <term>-l</term> - <listitem><para>give a long listing, of the format:</para> - -<para><programlisting> -"NT Group Name" - SID : - Unix group : - Group type : - Comment : - Privilege : -</programlisting></para> - -<para>For example: -<programlisting> -Users - SID : S-1-5-32-545 - Unix group: -1 - Group type: Local group - Comment : - Privilege : No privilege -</programlisting></para> - - </listitem> - </varlistentry> - - <varlistentry> - <term>-s</term> - <listitem><para>display a short listing of the format:</para> - -<para><programlisting> -NTGroupName(SID) -> UnixGroupName -</programlisting></para> - -<para>For example: -<programlisting> -Users (S-1-5-32-545) -> -1 -</programlisting></para> - - </listitem> - </varlistentry> - </variablelist> - - </listitem> - </varlistentry> - - </variablelist> -</refsect1> - - - -<refsect1> -<title>FILES</title> - -<para></para> - -</refsect1> - - - -<refsect1> - -<title>EXIT STATUS</title> - -<para> -<command>smbgroupedit</command> returns a status of 0 if the -operation completed successfully, and a value of 1 in the event -of a failure. -</para> - -</refsect1> - - - - -<!-- **************************************************** -**************************************************** --> -<refsect1> - -<title>EXAMPLES</title> - - -<para> -To make a subset of your samba PDC users members of -the 'Domain Admins' Global group: -</para> - -<orderedlist> - - <listitem><para>create a unix group (usually in - <filename>/etc/group</filename>), let's call it <constant>domadm</constant>. - </para></listitem> - - <listitem><para>add to this group the users that you want to be - domain administrators. For example if you want joe, john and mary, - your entry in <filename>/etc/group</filename> will look like: - </para> - - <para>domadm:x:502:joe,john,mary</para> - </listitem> - - <listitem><para>map this domadm group to the 'domain admins' group:</para> - <orderedlist> - <listitem><para>Get the SID for the Windows NT "Domain Admins" group:</para> -<para><programlisting> -<prompt>root# </prompt><command>smbgroupedit -vs | grep "Domain Admins"</command> -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> -1 -</programlisting></para></listitem> - - <listitem><para>map the unix domadm group to the Windows NT - "Domain Admins" group, by running the command: -<programlisting> -<prompt>root# </prompt><command>smbgroupedit \ --c S-1-5-21-1108995562-3116817432-1375597819-512 \ --u domadm -td</command> -</programlisting></para> - - <para><emphasis>warning:</emphasis> don't copy and paste this sample, the - Domain Admins SID (the S-1-5-21-...-512) is different for every PDC. - </para> </listitem> - </orderedlist> - </listitem> -</orderedlist> - -<para> -To verify that your mapping has taken effect: -<programlisting> -<prompt>root# </prompt><command>smbgroupedit -vs|grep "Domain Admins"</command> -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> domadm -</programlisting></para> - -<para>To give access to a certain directory on a domain member machine (an -NT/W2K or a samba server running winbind) to some users who are member -of a group on your samba PDC, flag that group as a domain group: -<programlisting> -<prompt>root# </prompt><command>smbgroupedit -a unixgroup -td</command> -</programlisting></para> - -</refsect1> - -<refsect1> - -<title>VERSION</title> - -<para> -This man page is correct for the 3.0alpha releases of -the Samba suite. -</para> -</refsect1> - -<refsect1> -<title>SEE ALSO</title> - -<para> -<citerefentry><refentrytitle>smb.conf</refentrytitle> -<manvolnum>5</manvolnum></citerefentry></para> - -</refsect1> - - -<refsect1> -<title>AUTHOR</title> - -<para> -The original Samba software and related utilities -were created by Andrew Tridgell. Samba is now developed -by the Samba Team as an Open Source project similar -to the way the Linux kernel is developed. -</para> - -<para> -<command>smbgroupedit</command> was written by Jean Francois Micouleau. -The current set of manpages and documentation is maintained -by the Samba Team in the same fashion as the Samba source code. The conversion -to DocBook XML 4.2 for Samba 3.0 was done by Alexander Bokovoy.</para> -</refsect1> - -</refentry> diff --git a/docs/htmldocs/smbgroupedit.8.html b/docs/htmldocs/smbgroupedit.8.html deleted file mode 100644 index 32e00315b4..0000000000 --- a/docs/htmldocs/smbgroupedit.8.html +++ /dev/null @@ -1,331 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<HTML -><HEAD -><TITLE ->smbgroupedit</TITLE -><META -NAME="GENERATOR" -CONTENT="Modular DocBook HTML Stylesheet Version 1.7"></HEAD -><BODY -CLASS="REFENTRY" -BGCOLOR="#FFFFFF" -TEXT="#000000" -LINK="#0000FF" -VLINK="#840084" -ALINK="#0000FF" -><H1 -><A -NAME="SMBGROUPEDIT.8" -></A ->smbgroupedit</H1 -><DIV -CLASS="REFNAMEDIV" -><A -NAME="AEN5" -></A -><H2 ->Name</H2 ->smbgroupedit -- Query/set/change UNIX - Windows NT group mapping</DIV -><DIV -CLASS="REFSYNOPSISDIV" -><A -NAME="AEN8" -></A -><H2 ->Synopsis</H2 -><P -><B -CLASS="COMMAND" ->smbroupedit</B -> [-v [l|s]] [-a UNIX-groupname [-d NT-groupname|-p privilege|]]</P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN13" -></A -><H2 ->DESCRIPTION</H2 -><P ->This program is part of the <SPAN -CLASS="CITEREFENTRY" -><SPAN -CLASS="REFENTRYTITLE" ->Samba</SPAN ->(7)</SPAN -> suite.</P -><P ->The smbgroupedit command allows for mapping unix groups -to NT Builtin, Domain, or Local groups. Also -allows setting privileges for that group, such as saAddUser, -etc.</P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN20" -></A -><H2 ->OPTIONS</H2 -><P -></P -><DIV -CLASS="VARIABLELIST" -><DL -><DT ->-v[l|s]</DT -><DD -><P ->This option will list all groups available - in the Windows NT domain in which samba is operating. - </P -><P -></P -><DIV -CLASS="VARIABLELIST" -><DL -><DT ->-l</DT -><DD -><P ->give a long listing, of the format:</P -><P -><PRE -CLASS="PROGRAMLISTING" ->"NT Group Name" - SID : - Unix group : - Group type : - Comment : - Privilege :</PRE -></P -><P ->For example: -<PRE -CLASS="PROGRAMLISTING" ->Users - SID : S-1-5-32-545 - Unix group: -1 - Group type: Local group - Comment : - Privilege : No privilege</PRE -></P -></DD -><DT ->-s</DT -><DD -><P ->display a short listing of the format:</P -><P -><PRE -CLASS="PROGRAMLISTING" ->NTGroupName(SID) -> UnixGroupName</PRE -></P -><P ->For example: -<PRE -CLASS="PROGRAMLISTING" ->Users (S-1-5-32-545) -> -1</PRE -></P -></DD -></DL -></DIV -></DD -></DL -></DIV -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN44" -></A -><H2 ->FILES</H2 -><P -></P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN47" -></A -><H2 ->EXIT STATUS</H2 -><P -><B -CLASS="COMMAND" ->smbgroupedit</B -> returns a status of 0 if the -operation completed successfully, and a value of 1 in the event -of a failure.</P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN51" -></A -><H2 ->EXAMPLES</H2 -><P ->To make a subset of your samba PDC users members of -the 'Domain Admins' Global group:</P -><P -></P -><OL -TYPE="1" -><LI -><P ->create a unix group (usually in - <TT -CLASS="FILENAME" ->/etc/group</TT ->), let's call it <CODE -CLASS="CONSTANT" ->domadm</CODE ->. - </P -></LI -><LI -><P ->add to this group the users that you want to be - domain administrators. For example if you want joe, john and mary, - your entry in <TT -CLASS="FILENAME" ->/etc/group</TT -> will look like: - </P -><P ->domadm:x:502:joe,john,mary</P -></LI -><LI -><P ->map this domadm group to the 'domain admins' group:</P -><P -></P -><OL -TYPE="a" -><LI -><P ->Get the SID for the Windows NT "Domain Admins" group:</P -><P -><PRE -CLASS="PROGRAMLISTING" -><SAMP -CLASS="PROMPT" ->root# </SAMP -><B -CLASS="COMMAND" ->smbgroupedit -vs | grep "Domain Admins"</B -> -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> -1</PRE -></P -></LI -><LI -><P ->map the unix domadm group to the Windows NT - "Domain Admins" group, by running the command: -<PRE -CLASS="PROGRAMLISTING" -><SAMP -CLASS="PROMPT" ->root# </SAMP -><B -CLASS="COMMAND" ->smbgroupedit \ --c S-1-5-21-1108995562-3116817432-1375597819-512 \ --u domadm -td</B -></PRE -></P -><P -><SPAN -CLASS="emphasis" -><I -CLASS="EMPHASIS" ->warning:</I -></SPAN -> don't copy and paste this sample, the - Domain Admins SID (the S-1-5-21-...-512) is different for every PDC. - </P -></LI -></OL -></LI -></OL -><P ->To verify that your mapping has taken effect: -<PRE -CLASS="PROGRAMLISTING" -><SAMP -CLASS="PROMPT" ->root# </SAMP -><B -CLASS="COMMAND" ->smbgroupedit -vs|grep "Domain Admins"</B -> -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> domadm</PRE -></P -><P ->To give access to a certain directory on a domain member machine (an -NT/W2K or a samba server running winbind) to some users who are member -of a group on your samba PDC, flag that group as a domain group: -<PRE -CLASS="PROGRAMLISTING" -><SAMP -CLASS="PROMPT" ->root# </SAMP -><B -CLASS="COMMAND" ->smbgroupedit -a unixgroup -td</B -></PRE -></P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN87" -></A -><H2 ->VERSION</H2 -><P ->This man page is correct for the 3.0alpha releases of -the Samba suite.</P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN90" -></A -><H2 ->SEE ALSO</H2 -><P -><SPAN -CLASS="CITEREFENTRY" -><SPAN -CLASS="REFENTRYTITLE" ->smb.conf</SPAN ->(5)</SPAN -></P -></DIV -><DIV -CLASS="REFSECT1" -><A -NAME="AEN96" -></A -><H2 ->AUTHOR</H2 -><P ->The original Samba software and related utilities -were created by Andrew Tridgell. Samba is now developed -by the Samba Team as an Open Source project similar -to the way the Linux kernel is developed.</P -><P -><B -CLASS="COMMAND" ->smbgroupedit</B -> was written by Jean Francois Micouleau. -The current set of manpages and documentation is maintained -by the Samba Team in the same fashion as the Samba source code. The conversion -to DocBook XML 4.2 for Samba 3.0 was done by Alexander Bokovoy.</P -></DIV -></BODY -></HTML ->
\ No newline at end of file diff --git a/docs/manpages/manpage.links b/docs/manpages/manpage.links deleted file mode 100644 index e69de29bb2..0000000000 --- a/docs/manpages/manpage.links +++ /dev/null diff --git a/docs/manpages/manpage.refs b/docs/manpages/manpage.refs deleted file mode 100644 index 81323bebe1..0000000000 --- a/docs/manpages/manpage.refs +++ /dev/null @@ -1,39 +0,0 @@ -{ - '' => '', - 'refentry:SMBGROUPEDIT.8' => 'smbgroupedit(8)', - 'refentry:NET.8' => 'net(8)', - 'refentry:SAMBA.7' => 'samba(7)', - 'refentry:SMBSTATUS.1' => 'smbstatus(1)', - 'refentry:SMBCACLS.1' => 'smbcacls(1)', - 'refentry:WBINFO.1' => 'wbinfo(1)', - 'refentry:NTLM-AUTH.1' => 'ntlm_auth(1)', - 'refentry:SMBPASSWD.8' => 'smbpasswd(8)', - 'refentry:SMB.CONF.5' => 'smb.conf(5)', - 'refentry:FINDSMB.1' => 'findsmb(1)', - 'refentry:SMBCONTROL.1' => 'smbcontrol(1)', - 'refentry:TESTPRNS.1' => 'testprns(1)', - 'refentry:SMBPASSWD.5' => 'smbpasswd(5)', - 'refentry:SMBD.8' => 'smbd(8)', - 'refentry:SMBTREE.1' => 'smbtree(1)', - 'refentry:EDITREG.1' => 'editreg(1)', - 'refentry:SMBCLIENT.1' => 'smbclient(1)', - 'refentry:WINBINDD.8' => 'winbindd(8)', - 'refentry:NMBLOOKUP' => 'nmblookup(1)', - 'refentry:SMBMOUNT.8' => 'smbmount(8)', - 'refentry:SMBCQUOTAS.1' => 'smbcquotas(1)', - 'refentry:PDBEDIT.8' => 'pdbedit(8)', - 'refentry:NTLM_AUTH.1' => 'ntlm_auth(1)', - 'refentry:SWAT.8' => 'swat(8)', - 'refentry:PROFILES.1' => 'profiles(1)', - 'refentry:LMHOSTS.5' => 'lmhosts(5)', - 'refentry:SMBMNT.8' => 'smbmnt(8)', - 'refentry:SMBSH.1' => 'smbsh(1)', - 'refentry:SMBSPOOL.8' => 'smbspool(8)', - 'refentry:RPCCLIENT.1' => 'rpcclient(1)', - 'refentry:VFSTEST.1' => 'vfstest(1)', - 'refentry:NMBD.8' => 'nmbd(8)', - 'refentry:TESTPARM.1' => 'testparm(1)', - 'refentry:SMBUMOUNT.8' => 'smbumount(8)', - 'refentry:SMBTAR.1' => 'smbtar(1)', - '' => '' -} diff --git a/docs/manpages/smbgroupedit.8 b/docs/manpages/smbgroupedit.8 deleted file mode 100644 index cd6a79acb1..0000000000 --- a/docs/manpages/smbgroupedit.8 +++ /dev/null @@ -1,148 +0,0 @@ -.\" This manpage has been automatically generated by docbook2man -.\" from a DocBook document. This tool can be found at: -.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> -.\" Please send any bug reports, improvements, comments, patches, -.\" etc. to Steve Cheng <steve@ggi-project.org>. -.TH "SMBGROUPEDIT" "8" "19 april 2003" "" "" - -.SH NAME -smbgroupedit \- Query/set/change UNIX - Windows NT group mapping -.SH SYNOPSIS - -\fBsmbroupedit\fR [ \fB-v [l|s]\fR ] [ \fB-a UNIX-groupname [-d NT-groupname|-p privilege|]\fR ] - -.SH "DESCRIPTION" -.PP -This program is part of the \fBSamba\fR(7) suite. -.PP -The smbgroupedit command allows for mapping unix groups -to NT Builtin, Domain, or Local groups. Also -allows setting privileges for that group, such as saAddUser, -etc. -.SH "OPTIONS" -.TP -\fB-v[l|s]\fR -This option will list all groups available -in the Windows NT domain in which samba is operating. -.RS -.TP -\fB-l\fR -give a long listing, of the format: - - -.nf -"NT Group Name" - SID : - Unix group : - Group type : - Comment : - Privilege : -.fi - -For example: - -.nf -Users - SID : S-1-5-32-545 - Unix group: -1 - Group type: Local group - Comment : - Privilege : No privilege -.fi -.TP -\fB-s\fR -display a short listing of the format: - - -.nf -NTGroupName(SID) -> UnixGroupName -.fi - -For example: - -.nf -Users (S-1-5-32-545) -> -1 -.fi -.RE -.SH "FILES" -.PP -.SH "EXIT STATUS" -.PP -\fBsmbgroupedit\fR returns a status of 0 if the -operation completed successfully, and a value of 1 in the event -of a failure. -.SH "EXAMPLES" -.PP -To make a subset of your samba PDC users members of -the 'Domain Admins' Global group: -.TP 3 -1. -create a unix group (usually in -\fI/etc/group\fR), let's call it domadm. -.TP 3 -2. -add to this group the users that you want to be -domain administrators. For example if you want joe, john and mary, -your entry in \fI/etc/group\fR will look like: - -domadm:x:502:joe,john,mary -.TP 3 -3. -map this domadm group to the 'domain admins' group: -.RS -.TP 3 -1. -Get the SID for the Windows NT "Domain Admins" group: - - -.nf -root# \fBsmbgroupedit -vs | grep "Domain Admins"\fR -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> -1 -.fi -.TP 3 -2. -map the unix domadm group to the Windows NT -"Domain Admins" group, by running the command: - -.nf -root# \fBsmbgroupedit \\ --c S-1-5-21-1108995562-3116817432-1375597819-512 \\ --u domadm -td\fR -.fi - -\fBwarning:\fR don't copy and paste this sample, the -Domain Admins SID (the S-1-5-21-...-512) is different for every PDC. -.RE -.PP -To verify that your mapping has taken effect: - -.nf -root# \fBsmbgroupedit -vs|grep "Domain Admins"\fR -Domain Admins (S-1-5-21-1108995562-3116817432-1375597819-512) -> domadm -.fi -.PP -To give access to a certain directory on a domain member machine (an -NT/W2K or a samba server running winbind) to some users who are member -of a group on your samba PDC, flag that group as a domain group: - -.nf -root# \fBsmbgroupedit -a unixgroup -td\fR -.fi -.SH "VERSION" -.PP -This man page is correct for the 3.0alpha releases of -the Samba suite. -.SH "SEE ALSO" -.PP -\fBsmb.conf\fR(5) -.SH "AUTHOR" -.PP -The original Samba software and related utilities -were created by Andrew Tridgell. Samba is now developed -by the Samba Team as an Open Source project similar -to the way the Linux kernel is developed. -.PP -\fBsmbgroupedit\fR was written by Jean Francois Micouleau. -The current set of manpages and documentation is maintained -by the Samba Team in the same fashion as the Samba source code. The conversion -to DocBook XML 4.2 for Samba 3.0 was done by Alexander Bokovoy. |