From 9827ffedb70eccb3f71e73ba5bb75700b9452660 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 25 Jan 2008 11:23:12 -0500 Subject: Use consistent naming for tools. Resolves 430243 --- ipa-admintools/man/Makefile | 4 +-- ipa-admintools/man/ipa-groupmod.1 | 53 --------------------------------------- ipa-admintools/man/ipa-modgroup.1 | 53 +++++++++++++++++++++++++++++++++++++++ ipa-admintools/man/ipa-moduser.1 | 53 +++++++++++++++++++++++++++++++++++++++ ipa-admintools/man/ipa-usermod.1 | 53 --------------------------------------- 5 files changed, 108 insertions(+), 108 deletions(-) delete mode 100644 ipa-admintools/man/ipa-groupmod.1 create mode 100644 ipa-admintools/man/ipa-modgroup.1 create mode 100644 ipa-admintools/man/ipa-moduser.1 delete mode 100644 ipa-admintools/man/ipa-usermod.1 (limited to 'ipa-admintools/man') diff --git a/ipa-admintools/man/Makefile b/ipa-admintools/man/Makefile index 15412475..c8151333 100644 --- a/ipa-admintools/man/Makefile +++ b/ipa-admintools/man/Makefile @@ -9,12 +9,12 @@ MANFILES=\ ipa-deluser.1 \ ipa-findgroup.1 \ ipa-finduser.1 \ - ipa-groupmod.1 \ + ipa-modgroup.1 \ ipa-listdelegation.1 \ ipa-lockuser.1 \ ipa-moddelegation.1 \ ipa-passwd.1 \ - ipa-usermod.1 \ + ipa-moduser.1 \ ipa-getkeytab.1 all: ; diff --git a/ipa-admintools/man/ipa-groupmod.1 b/ipa-admintools/man/ipa-groupmod.1 deleted file mode 100644 index 5d107de2..00000000 --- a/ipa-admintools/man/ipa-groupmod.1 +++ /dev/null @@ -1,53 +0,0 @@ -.\" A man page for ipa-groupmod -.\" Copyright (C) 2007 Red Hat, Inc. -.\" -.\" This is free software; you can redistribute it and/or modify it under -.\" the terms of the GNU Library General Public License as published by -.\" the Free Software Foundation; either version 2 of the License, or -.\" (at your option) any later version. -.\" -.\" This program is distributed in the hope that it will be useful, but -.\" WITHOUT ANY WARRANTY; without even the implied warranty of -.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -.\" General Public License for more details. -.\" -.\" You should have received a copy of the GNU Library General Public -.\" License along with this program; if not, write to the Free Software -.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -.\" -.\" Author: Rob Crittenden -.\" -.TH "ipa-groupmod" "1" "Oct 10 2007" "freeipa" "" -.SH "NAME" -ipa\-groupmod \- Modify a group -.SH "SYNOPSIS" -ipa\-groupmod [\fIOPTION\fR]... \fIgroup\fR - -.SH "DESCRIPTION" -Updates the members or description of \fIgroup\fR. -.SH "OPTIONS" -.TP -\fB\-a\fR, \fB\-\-add\fR=\fIuser1,user2,...usern\fR -Add one or more users to the group - -.TP -\fB\-d\fR, \fB\-\-description\fR=\fIdescription\fR -Modify the description of the group - -.TP -\fB\-r\fR, \fB\-\-remove\fR=\fIuser1,user2,...usern\fR -Remove one or more users from the group - -.TP -\fB\-\-addattr\fR=\fIattr=value\fR -Add a new attribute, or value to an existing attribute - -.TP -\fB\-\-delattr\fR=\fIattr=value\fR -Remove an attribute and all values - -.TP -\fB\-\-setattr\fR=\fIattr=value\fR -Set an attribute to a new value, removing all old ones -.SH "EXIT STATUS" -The exit status is 0 on success, nonzero on error. diff --git a/ipa-admintools/man/ipa-modgroup.1 b/ipa-admintools/man/ipa-modgroup.1 new file mode 100644 index 00000000..caaf64e3 --- /dev/null +++ b/ipa-admintools/man/ipa-modgroup.1 @@ -0,0 +1,53 @@ +.\" A man page for ipa-modgroup +.\" Copyright (C) 2007 Red Hat, Inc. +.\" +.\" This is free software; you can redistribute it and/or modify it under +.\" the terms of the GNU Library General Public License as published by +.\" the Free Software Foundation; either version 2 of the License, or +.\" (at your option) any later version. +.\" +.\" This program is distributed in the hope that it will be useful, but +.\" WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +.\" General Public License for more details. +.\" +.\" You should have received a copy of the GNU Library General Public +.\" License along with this program; if not, write to the Free Software +.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +.\" +.\" Author: Rob Crittenden +.\" +.TH "ipa-modgroup" "1" "Oct 10 2007" "freeipa" "" +.SH "NAME" +ipa\-modgroup \- Modify a group +.SH "SYNOPSIS" +ipa\-modgroup [\fIOPTION\fR]... \fIgroup\fR + +.SH "DESCRIPTION" +Updates the members or description of \fIgroup\fR. +.SH "OPTIONS" +.TP +\fB\-a\fR, \fB\-\-add\fR=\fIuser1,user2,...usern\fR +Add one or more users to the group + +.TP +\fB\-d\fR, \fB\-\-description\fR=\fIdescription\fR +Modify the description of the group + +.TP +\fB\-r\fR, \fB\-\-remove\fR=\fIuser1,user2,...usern\fR +Remove one or more users from the group + +.TP +\fB\-\-addattr\fR=\fIattr=value\fR +Add a new attribute, or value to an existing attribute + +.TP +\fB\-\-delattr\fR=\fIattr=value\fR +Remove an attribute and all values + +.TP +\fB\-\-setattr\fR=\fIattr=value\fR +Set an attribute to a new value, removing all old ones +.SH "EXIT STATUS" +The exit status is 0 on success, nonzero on error. diff --git a/ipa-admintools/man/ipa-moduser.1 b/ipa-admintools/man/ipa-moduser.1 new file mode 100644 index 00000000..616cb9b2 --- /dev/null +++ b/ipa-admintools/man/ipa-moduser.1 @@ -0,0 +1,53 @@ +.\" A man page for ipa-moduser +.\" Copyright (C) 2007 Red Hat, Inc. +.\" +.\" This is free software; you can redistribute it and/or modify it under +.\" the terms of the GNU Library General Public License as published by +.\" the Free Software Foundation; either version 2 of the License, or +.\" (at your option) any later version. +.\" +.\" This program is distributed in the hope that it will be useful, but +.\" WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +.\" General Public License for more details. +.\" +.\" You should have received a copy of the GNU Library General Public +.\" License along with this program; if not, write to the Free Software +.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +.\" +.\" Author: Rob Crittenden +.\" +.TH "ipa-moduser" "1" "Oct 10 2007" "freeipa" "" +.SH "NAME" +ipa\-moduser \- Modify a user +.SH "SYNOPSIS" +ipa\-moduser [\fIOPTION\fR]... \fIname\fR + +.SH "DESCRIPTION" +Updates the user \fIname\fR. +.SH "OPTIONS" +.TP +\fB\-a\fR, \fB\-\-add\fR=\fIuser1,user2,...usern\fR +Add one or more users to the group + +.TP +\fB\-d\fR, \fB\-\-description\fR=\fIdescription\fR +Modify the description of the group + +.TP +\fB\-r\fR, \fB\-\-remove\fR=\fIuser1,user2,...usern\fR +Remove one or more users from the group + +.TP +\fB\-\-addattr\fR=\fIattr=value\fR +Add a new attribute, or value to an existing attribute + +.TP +\fB\-\-delattr\fR=\fIattr=value\fR +Remove an attribute and all values + +.TP +\fB\-\-setattr\fR=\fIattr=value\fR +Set an attribute to a new value, removing all old ones +.SH "EXIT STATUS" +The exit status is 0 on success, nonzero on error. diff --git a/ipa-admintools/man/ipa-usermod.1 b/ipa-admintools/man/ipa-usermod.1 deleted file mode 100644 index 43c74e45..00000000 --- a/ipa-admintools/man/ipa-usermod.1 +++ /dev/null @@ -1,53 +0,0 @@ -.\" A man page for ipa-usermod -.\" Copyright (C) 2007 Red Hat, Inc. -.\" -.\" This is free software; you can redistribute it and/or modify it under -.\" the terms of the GNU Library General Public License as published by -.\" the Free Software Foundation; either version 2 of the License, or -.\" (at your option) any later version. -.\" -.\" This program is distributed in the hope that it will be useful, but -.\" WITHOUT ANY WARRANTY; without even the implied warranty of -.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -.\" General Public License for more details. -.\" -.\" You should have received a copy of the GNU Library General Public -.\" License along with this program; if not, write to the Free Software -.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -.\" -.\" Author: Rob Crittenden -.\" -.TH "ipa-usermod" "1" "Oct 10 2007" "freeipa" "" -.SH "NAME" -ipa\-usermod \- Modify a user -.SH "SYNOPSIS" -ipa\-usermod [\fIOPTION\fR]... \fIname\fR - -.SH "DESCRIPTION" -Updates the user \fIname\fR. -.SH "OPTIONS" -.TP -\fB\-a\fR, \fB\-\-add\fR=\fIuser1,user2,...usern\fR -Add one or more users to the group - -.TP -\fB\-d\fR, \fB\-\-description\fR=\fIdescription\fR -Modify the description of the group - -.TP -\fB\-r\fR, \fB\-\-remove\fR=\fIuser1,user2,...usern\fR -Remove one or more users from the group - -.TP -\fB\-\-addattr\fR=\fIattr=value\fR -Add a new attribute, or value to an existing attribute - -.TP -\fB\-\-delattr\fR=\fIattr=value\fR -Remove an attribute and all values - -.TP -\fB\-\-setattr\fR=\fIattr=value\fR -Set an attribute to a new value, removing all old ones -.SH "EXIT STATUS" -The exit status is 0 on success, nonzero on error. -- cgit