summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorBenedict Reuschling <bcr@FreeBSD.org>2019-02-08 22:10:40 +0000
committerBenedict Reuschling <bcr@FreeBSD.org>2019-02-08 22:10:40 +0000
commit5588f33210b9db0677764328640b9acddb9c83a0 (patch)
tree915c4ba12c5357f59a371bb5bebe84f795e981e3 /pw
parentd144a8e142a926ef42e0793ec726e086567337f8 (diff)
downloadpw-darwin-5588f33210b9db0677764328640b9acddb9c83a0.tar.gz
pw-darwin-5588f33210b9db0677764328640b9acddb9c83a0.tar.zst
pw-darwin-5588f33210b9db0677764328640b9acddb9c83a0.zip
Add an example to pw.8 about how to add an existing user to a group.
Instead of using pw to modify group membership, users often edit /etc/group by hand, which is discouraged. Provide an example of adding a user to the wheel group, which is a common use case. I'm using a different user here as in the previous example as that deleted the user (although the examples don't necessarily have to be followed in order). Reviewed by: rgrimes,0mp Approved by: 0mp MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D19123
Diffstat (limited to 'pw')
-rw-r--r--pw/pw.88
1 files changed, 7 insertions, 1 deletions
diff --git a/pw/pw.8 b/pw/pw.8
index e848979..18930fb 100644
--- a/pw/pw.8
+++ b/pw/pw.8
@@ -24,7 +24,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd December 10, 2017
+.Dd February 8, 2019
.Dt PW 8
.Os
.Sh NAME
@@ -979,6 +979,12 @@ Delete the gsmith user and their home directory, including contents.
.Bd -literal -offset indent
pw userdel -n gsmith -r
.Ed
+.Pp
+Add the existing user jsmith to the wheel group,
+in addition to the other groups jsmith is already a member of.
+.Bd -literal -offset indent
+pw groupmod wheel -m jsmith
+.Ed
.Sh EXIT STATUS
The
.Nm