From: nekral-guest Date: Fri, 15 Aug 2008 15:25:53 +0000 (+0000) Subject: * man/groupadd.8.xml: Fix the regular expression for group policy. X-Git-Tag: 4.1.3~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa33bb9d0ed476c4491eb454658b2e07e9b8105c;p=thirdparty%2Fshadow.git * man/groupadd.8.xml: Fix the regular expression for group policy. The final $ character is optional. * man/groupadd.8.xml: Likewise. * man/groupadd.8.xml: Indicate the maximum size of usernames. --- diff --git a/ChangeLog b/ChangeLog index a8c4a61fc..b671f8f1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ 2008-08-15 Nicolas François - * man/po/pl.po: Fix typo inthe Polish translation (see + * man/groupadd.8.xml: Fix the regular expression for group policy. + The final $ character is optional. + * man/groupadd.8.xml: Likewise. + * man/groupadd.8.xml: Indicate the maximum size of usernames. + +2008-08-15 Nicolas François + + * man/po/pl.po: Fix typo in the Polish translation (see http://bugs.debian.org/491460) 2008-08-13 Nicolas François diff --git a/man/groupadd.8.xml b/man/groupadd.8.xml index 93037fbce..04f7aec1c 100644 --- a/man/groupadd.8.xml +++ b/man/groupadd.8.xml @@ -188,7 +188,7 @@ Groupnames 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_-]*[$] + may follow. In regular expression terms: [a-z_][a-z0-9_-]*[$]? Groupnames may only be up to 16 characters long. diff --git a/man/useradd.8.xml b/man/useradd.8.xml index 883bbc4e2..6c330ca42 100644 --- a/man/useradd.8.xml +++ b/man/useradd.8.xml @@ -463,7 +463,10 @@ 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_-]*[$] + follow. In regular expression terms: [a-z_][a-z0-9_-]*[$]? + + + Usernames may only be up to 32 characters long.