From mboxrd@z Thu Jan 1 00:00:00 1970 From: ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org (Eric W. Biederman) Subject: [PATCH 02/11] login.defs.5: Document the new variables in login.defs Date: Tue, 22 Jan 2013 01:12:58 -0800 Message-ID: <871uddshr9.fsf@xmission.com> References: <87d2wxshu0.fsf@xmission.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <87d2wxshu0.fsf-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org> (Eric W. Biederman's message of "Tue, 22 Jan 2013 01:11:19 -0800") List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org Errors-To: containers-bounces-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org To: Nicolas =?utf-8?Q?Fran=C3=A7ois?= Cc: Linux Containers , Pkg-shadow-devel-XbBxUvOt3X2LieD7tvxI8l/i77bcL1HB@public.gmane.org, "Michael Kerrisk (man-pages)" List-Id: containers.vger.kernel.org Signed-off-by: "Eric W. Biederman" --- man/Makefile.am | 2 + man/login.defs.5.xml | 8 ++++++ man/login.defs.d/SUB_GID_COUNT.xml | 46 ++++++++++++++++++++++++++++++++++++ man/login.defs.d/SUB_UID_COUNT.xml | 46 ++++++++++++++++++++++++++++++++++++ 4 files changed, 102 insertions(+), 0 deletions(-) create mode 100644 man/login.defs.d/SUB_GID_COUNT.xml create mode 100644 man/login.defs.d/SUB_UID_COUNT.xml diff --git a/man/Makefile.am b/man/Makefile.am index be7f5e2..fc617e9 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -163,6 +163,8 @@ login_defs_v = \ USERDEL_CMD.xml \ USERGROUPS_ENAB.xml \ USE_TCB.xml \ + SUB_GID_COUNT.xml \ + SUB_UID_COUNT.xml \ SYS_GID_MAX.xml \ SYS_UID_MAX.xml diff --git a/man/login.defs.5.xml b/man/login.defs.5.xml index 459b866..d5279ca 100644 --- a/man/login.defs.5.xml +++ b/man/login.defs.5.xml @@ -78,6 +78,8 @@ + + @@ -216,6 +218,8 @@ &SULOG_FILE; &SU_NAME; &SU_WHEEL_ONLY; + &SUB_GID_COUNT; + &SUB_UID_COUNT; &SYS_GID_MAX; &SYS_UID_MAX; &SYSLOG_SG_ENAB; @@ -393,6 +397,8 @@ PASS_MAX_DAYS PASS_MIN_DAYS PASS_WARN_AGE SHA_CRYPT_MAX_ROUNDS SHA_CRYPT_MIN_ROUNDS + SUB_GID_COUNT SUB_GID_MAX SUB_GID_MIN + SUB_UID_COUNT SUB_UID_MAX SUB_UID_MIN SYS_GID_MAX SYS_GID_MIN SYS_UID_MAX SYS_UID_MIN UID_MAX UID_MIN UMASK @@ -470,6 +476,8 @@ GID_MAX GID_MIN MAIL_DIR MAX_MEMBERS_PER_GROUP PASS_MAX_DAYS PASS_MIN_DAYS PASS_WARN_AGE + SUB_GID_COUNT SUB_GID_MAX SUB_GID_MIN + SUB_UID_COUNT SUB_UID_MAX SUB_UID_MIN SYS_GID_MAX SYS_GID_MIN SYS_UID_MAX SYS_UID_MIN UID_MAX UID_MIN UMASK TCB_AUTH_GROUP TCB_SYMLINK USE_TCB diff --git a/man/login.defs.d/SUB_GID_COUNT.xml b/man/login.defs.d/SUB_GID_COUNT.xml new file mode 100644 index 0000000..db1a25b --- /dev/null +++ b/man/login.defs.d/SUB_GID_COUNT.xml @@ -0,0 +1,46 @@ + + + (number) + (number) + (number) + + + The commands useradd and newusers + allocate unused group IDs from the range + to for each + new user. + + + The default values for , + , + are respectively 100000, 600100000 and 10000. + + + diff --git a/man/login.defs.d/SUB_UID_COUNT.xml b/man/login.defs.d/SUB_UID_COUNT.xml new file mode 100644 index 0000000..bea3b6a --- /dev/null +++ b/man/login.defs.d/SUB_UID_COUNT.xml @@ -0,0 +1,46 @@ + + + (number) + (number) + (number) + + + The commands useradd and newusers + allocate unused user IDs from the range + to for each + new user. + + + The default values for , + , + are respectively 100000, 600100000 and 10000. + + + -- 1.7.5.4