* man/groupadd.8.xml, man/useradd.8.xml: names may also contain

digits.
This commit is contained in:
nekral-guest
2009-05-18 22:43:59 +00:00
parent 96816f495e
commit 6573e0175f
3 changed files with 13 additions and 6 deletions

View File

@@ -601,9 +601,10 @@
</para>
<para>
Usernames must begin with a lower case letter or an underscore, and
only lower case letters, underscores, dashes, and dollar signs may
follow. In regular expression terms: [a-z_][a-z0-9_-]*[$]?
Usernames must start with a lower case letter or an underscore,
followed by lower case letters, digits, underscores, or dashes.
They can end with a dollar sign.
In regular expression terms: [a-z_][a-z0-9_-]*[$]?
</para>
<para>
Usernames may only be up to 32 characters long.