New upstream version 4.12.3+dfsg1

This commit is contained in:
Balint Reczey
2022-08-24 00:06:41 +02:00
parent 675b462b64
commit 60957b44e5
409 changed files with 1231 additions and 1159 deletions

View File

@@ -1,3 +1,7 @@
2022-08-22 Serge Hallyn <serge@hallyn.com>
* Revert the removal of subid_init as pointed out by Balint.
2022-08-15 Serge Hallyn <serge@hallyn.com>
* Address CVE-2013-4235 (TOCTTOU when copying directories)

20
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for shadow 4.12.2.
# Generated by GNU Autoconf 2.71 for shadow 4.12.3.
#
# Report bugs to <pkg-shadow-devel@lists.alioth.debian.org>.
#
@@ -621,8 +621,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='shadow'
PACKAGE_TARNAME='shadow'
PACKAGE_VERSION='4.12.2'
PACKAGE_STRING='shadow 4.12.2'
PACKAGE_VERSION='4.12.3'
PACKAGE_STRING='shadow 4.12.3'
PACKAGE_BUGREPORT='pkg-shadow-devel@lists.alioth.debian.org'
PACKAGE_URL='https://github.com/shadow-maint/shadow'
@@ -1458,7 +1458,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures shadow 4.12.2 to adapt to many kinds of systems.
\`configure' configures shadow 4.12.3 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1529,7 +1529,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of shadow 4.12.2:";;
short | recursive ) echo "Configuration of shadow 4.12.3:";;
esac
cat <<\_ACEOF
@@ -1696,7 +1696,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
shadow configure 4.12.2
shadow configure 4.12.3
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2353,7 +2353,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by shadow $as_me 4.12.2, which was
It was created by shadow $as_me 4.12.3, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@@ -3626,7 +3626,7 @@ fi
# Define the identity of the package.
PACKAGE='shadow'
VERSION='4.12.2'
VERSION='4.12.3'
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -20744,7 +20744,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by shadow $as_me 4.12.2, which was
This file was extended by shadow $as_me 4.12.3, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -20813,7 +20813,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
shadow config.status 4.12.2
shadow config.status 4.12.3
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"

View File

@@ -4,7 +4,7 @@ m4_define([libsubid_abi_major], 4)
m4_define([libsubid_abi_minor], 0)
m4_define([libsubid_abi_micro], 0)
m4_define([libsubid_abi], [libsubid_abi_major.libsubid_abi_minor.libsubid_abi_micro])
AC_INIT([shadow], [4.12.2], [pkg-shadow-devel@lists.alioth.debian.org], [],
AC_INIT([shadow], [4.12.3], [pkg-shadow-devel@lists.alioth.debian.org], [],
[https://github.com/shadow-maint/shadow])
AM_INIT_AUTOMAKE([1.11 foreign dist-xz])
AC_CONFIG_MACRO_DIRS([m4])

View File

@@ -17,6 +17,31 @@
#include "subid.h"
#include "shadowlog.h"
bool subid_init(const char *progname, FILE * logfd)
{
FILE *shadow_logfd;
if (progname) {
progname = strdup(progname);
if (!progname)
return false;
log_set_progname(progname);
} else {
log_set_progname("(libsubid)");
}
if (logfd) {
log_set_logfd(logfd);
return true;
}
shadow_logfd = fopen("/dev/null", "w");
if (!shadow_logfd) {
log_set_logfd(stderr);
return false;
}
log_set_logfd(shadow_logfd);
return true;
}
static
int get_subid_ranges(const char *owner, enum subid_type id_type, struct subid_range **ranges)
{

View File

@@ -39,6 +39,22 @@ enum subid_status {
extern "C" {
#endif
/*
* subid_init: initialize libsubid
*
* @progname: Name to display as program. If NULL, then "(libsubid)" will be
* shown in error messages.
* @logfd: Open file pointer to pass error messages to. If NULL, then
* /dev/null will be opened and messages will be sent there. The
* default if libsubid_init() is not called is stderr (2).
*
* This function does not need to be called. If not called, then the defaults
* will be used.
*
* Returns false if an error occurred.
*/
bool subid_init(const char *progname, FILE *logfd);
/*
* subid_get_uid_ranges: return a list of UID ranges for a user
*

View File

@@ -39,6 +39,22 @@ enum subid_status {
extern "C" {
#endif
/*
* subid_init: initialize libsubid
*
* @progname: Name to display as program. If NULL, then "(libsubid)" will be
* shown in error messages.
* @logfd: Open file pointer to pass error messages to. If NULL, then
* /dev/null will be opened and messages will be sent there. The
* default if libsubid_init() is not called is stderr (2).
*
* This function does not need to be called. If not called, then the defaults
* will be used.
*
* Returns false if an error occurred.
*/
bool subid_init(const char *progname, FILE *logfd);
/*
* subid_get_uid_ranges: return a list of UID ranges for a user
*

View File

@@ -2,12 +2,12 @@
.\" Title: chfn
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: User Commands
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "CHFN" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "User Commands"
.TH "CHFN" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groups
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: User Commands
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "GROUPS" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "User Commands"
.TH "GROUPS" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: id
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: User Commands
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "ID" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "User Commands"
.TH "ID" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newgrp
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: User Commands
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "NEWGRP" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "User Commands"
.TH "NEWGRP" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: sg
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: User Commands
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "SG" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "User Commands"
.TH "SG" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: gshadow
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "GSHADOW" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "GSHADOW" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Kommandoer for systemh\(oandtering
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "GROUPDEL" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Kommandoer for systemh\(oandterin"
.TH "GROUPDEL" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Kommandoer for systemh\(oandterin"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: logoutd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Kommandoer for systemh\(oandtering
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "LOGOUTD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Kommandoer for systemh\(oandterin"
.TH "LOGOUTD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Kommandoer for systemh\(oandterin"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: nologin
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Kommandoer for systemh\(oandtering
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "NOLOGIN" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Kommandoer for systemh\(oandterin"
.TH "NOLOGIN" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Kommandoer for systemh\(oandterin"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: vipw
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Kommandoer for systemh\(oandtering
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: Danish
.\"
.TH "VIPW" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Kommandoer for systemh\(oandterin"
.TH "VIPW" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Kommandoer for systemh\(oandterin"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chage
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "CHAGE" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "CHAGE" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chfn
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "CHFN" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "CHFN" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chsh
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "CHSH" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "CHSH" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: expiry
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "EXPIRY" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "EXPIRY" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: gpasswd
.\" Author: Rafal Maszkowski
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GPASSWD" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "GPASSWD" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groups
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GROUPS" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "GROUPS" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: id
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "ID" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "ID" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LOGIN" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "LOGIN" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newgrp
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "NEWGRP" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "NEWGRP" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: passwd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "PASSWD" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "PASSWD" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: sg
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SG" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "SG" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: su
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Dienstprogramme f\(:ur Benutzer
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SU" "1" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Dienstprogramme f\(:ur Benutzer"
.TH "SU" "1" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Dienstprogramme f\(:ur Benutzer"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: shadow
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Bibliotheksaufrufe
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SHADOW" "3" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Bibliotheksaufrufe"
.TH "SHADOW" "3" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Bibliotheksaufrufe"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: faillog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "FAILLOG" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuratio"
.TH "FAILLOG" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuratio"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: gshadow
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GSHADOW" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "GSHADOW" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: limits
.\" Author: Luca Berra
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LIMITS" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LIMITS" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login.access
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LOGIN\&.ACCESS" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LOGIN\&.ACCESS" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login.defs
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LOGIN\&.DEFS" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LOGIN\&.DEFS" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: passwd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "PASSWD" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "PASSWD" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: porttime
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "PORTTIME" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "PORTTIME" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: shadow
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SHADOW" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SHADOW" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: suauth
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SUAUTH" "5" "18.08.2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SUAUTH" "5" "22.08.2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chgpasswd
.\" Author: Thomas K\(/loczko <kloczek@pld.org.pl>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "CHGPASSWD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "CHGPASSWD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chpasswd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "CHPASSWD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "CHPASSWD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: faillog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "FAILLOG" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "FAILLOG" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupadd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GROUPADD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "GROUPADD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GROUPDEL" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "GROUPDEL" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupmems
.\" Author: George Kraft, IV
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GROUPMEMS" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "GROUPMEMS" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupmod
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GROUPMOD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "GROUPMOD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: grpck
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "GRPCK" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "GRPCK" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: lastlog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LASTLOG" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "LASTLOG" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: logoutd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "LOGOUTD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "LOGOUTD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newusers
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "NEWUSERS" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "NEWUSERS" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: nologin
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "NOLOGIN" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "NOLOGIN" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: pwck
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "PWCK" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "PWCK" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: pwconv
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "PWCONV" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "PWCONV" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: sulogin
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "SULOGIN" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "SULOGIN" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: useradd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "USERADD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "USERADD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -162,7 +162,7 @@ is specified on the command line), a group will be created for the user, with th
is specified on the command line), useradd will set the primary group of the new user to the value specified by the
\fBGROUP\fR
variable in
/etc/default/useradd, or 100 by default\&.
/etc/default/useradd, or 1000 by default\&.
.RE
.PP
\fB\-G\fR, \fB\-\-groups\fR\ \&\fIGROUP1\fR[\fI,GROUP2,\&.\&.\&.\fR[\fI,GROUPN\fR]]]

View File

@@ -2,12 +2,12 @@
.\" Title: userdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "USERDEL" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "USERDEL" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: usermod
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "USERMOD" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "USERMOD" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: vipw
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18.08.2022
.\" Date: 22.08.2022
.\" Manual: Befehle zur Systemverwaltung
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: German
.\"
.TH "VIPW" "8" "18.08.2022" "shadow\-utils 4\&.12\&.2" "Befehle zur Systemverwaltung"
.TH "VIPW" "8" "22.08.2022" "shadow\-utils 4\&.12\&.3" "Befehle zur Systemverwaltung"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chage
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "CHAGE" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "CHAGE" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chfn
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "CHFN" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "CHFN" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chsh
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "CHSH" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "CHSH" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: expiry
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "EXPIRY" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "EXPIRY" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: gpasswd
.\" Author: rafal Maszkowski
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GPASSWD" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "GPASSWD" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groups
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GROUPS" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "GROUPS" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: id
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "ID" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "ID" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LOGIN" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "LOGIN" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newgidmap
.\" Author: Eric Biederman
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "NEWGIDMAP" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "NEWGIDMAP" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newgrp
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "NEWGRP" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "NEWGRP" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newuidmap
.\" Author: Eric Biederman
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "NEWUIDMAP" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "NEWUIDMAP" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: passwd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "PASSWD" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "PASSWD" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: sg
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SG" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "SG" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: su
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes utilisateur
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SU" "1" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes utilisateur"
.TH "SU" "1" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes utilisateur"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: shadow
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Appels de biblioth\(`eque
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SHADOW" "3" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Appels de biblioth\(`eque"
.TH "SHADOW" "3" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Appels de biblioth\(`eque"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: faillog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "FAILLOG" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuratio"
.TH "FAILLOG" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuratio"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: gshadow
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GSHADOW" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "GSHADOW" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: limits
.\" Author: Luca Berra
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LIMITS" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LIMITS" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login.access
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LOGIN\&.ACCESS" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LOGIN\&.ACCESS" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: login.defs
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LOGIN\&.DEFS" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "LOGIN\&.DEFS" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: passwd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "PASSWD" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "PASSWD" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: porttime
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "PORTTIME" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "PORTTIME" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: shadow
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SHADOW" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SHADOW" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: suauth
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SUAUTH" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SUAUTH" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: subgid
.\" Author: Eric Biederman
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SUBGID" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SUBGID" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: subuid
.\" Author: Eric Biederman
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SUBUID" "5" "18/08/2022" "shadow\-utils 4\&.12\&.2" "File Formats and Configuration"
.TH "SUBUID" "5" "22/08/2022" "shadow\-utils 4\&.12\&.3" "File Formats and Configuration"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chgpasswd
.\" Author: Thomas K\(/loczko <kloczek@pld.org.pl>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "CHGPASSWD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "CHGPASSWD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: chpasswd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "CHPASSWD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "CHPASSWD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: faillog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "FAILLOG" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "FAILLOG" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupadd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GROUPADD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "GROUPADD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GROUPDEL" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "GROUPDEL" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupmems
.\" Author: George Kraft, IV
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GROUPMEMS" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "GROUPMEMS" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: groupmod
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GROUPMOD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "GROUPMOD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: grpck
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "GRPCK" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "GRPCK" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: lastlog
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LASTLOG" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "LASTLOG" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: logoutd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "LOGOUTD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "LOGOUTD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: newusers
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "NEWUSERS" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "NEWUSERS" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: nologin
.\" Author: Nicolas Fran\(,cois <nicolas.francois@centraliens.net>
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "NOLOGIN" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "NOLOGIN" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: pwck
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "PWCK" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "PWCK" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: pwconv
.\" Author: Marek Micha\(/lkiewicz
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "PWCONV" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "PWCONV" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: sulogin
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "SULOGIN" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "SULOGIN" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: useradd
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "USERADD" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "USERADD" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -162,7 +162,7 @@ is specified on the command line), a group will be created for the user, with th
is specified on the command line), useradd will set the primary group of the new user to the value specified by the
\fBGROUP\fR
variable in
/etc/default/useradd, or 100 by default\&.
/etc/default/useradd, or 1000 by default\&.
.RE
.PP
\fB\-G\fR, \fB\-\-groups\fR\ \&\fIGROUP1\fR[\fI,GROUP2,\&.\&.\&.\fR[\fI,GROUPN\fR]]]

View File

@@ -2,12 +2,12 @@
.\" Title: userdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 18/08/2022
.\" Date: 22/08/2022
.\" Manual: Commandes de gestion du syst\(`eme
.\" Source: shadow-utils 4.12.2
.\" Source: shadow-utils 4.12.3
.\" Language: French
.\"
.TH "USERDEL" "8" "18/08/2022" "shadow\-utils 4\&.12\&.2" "Commandes de gestion du syst\(`em"
.TH "USERDEL" "8" "22/08/2022" "shadow\-utils 4\&.12\&.3" "Commandes de gestion du syst\(`em"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

Some files were not shown because too many files have changed in this diff Show More