Compare commits

...

2 Commits

Author SHA1 Message Date
Chris Hofstaedtler
65261e28f4 New upstream version 4.17.2 2025-02-09 18:13:39 +01:00
Chris Hofstaedtler
bd724b34e0 New upstream version 4.17.1 2025-01-04 12:41:43 +01:00
390 changed files with 20023 additions and 1989 deletions

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.17.0.
# Generated by GNU Autoconf 2.71 for shadow 4.17.2.
#
# 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.17.0'
PACKAGE_STRING='shadow 4.17.0'
PACKAGE_VERSION='4.17.2'
PACKAGE_STRING='shadow 4.17.2'
PACKAGE_BUGREPORT='pkg-shadow-devel@lists.alioth.debian.org'
PACKAGE_URL='https://github.com/shadow-maint/shadow'
@@ -1488,7 +1488,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.17.0 to adapt to many kinds of systems.
\`configure' configures shadow 4.17.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1559,7 +1559,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of shadow 4.17.0:";;
short | recursive ) echo "Configuration of shadow 4.17.2:";;
esac
cat <<\_ACEOF
@@ -1738,7 +1738,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
shadow configure 4.17.0
shadow configure 4.17.2
generated by GNU Autoconf 2.71
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2338,7 +2338,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.17.0, which was
It was created by shadow $as_me 4.17.2, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ $0$ac_configure_args_raw
@@ -3611,7 +3611,7 @@ fi
# Define the identity of the package.
PACKAGE='shadow'
VERSION='4.17.0'
VERSION='4.17.2'
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -20846,7 +20846,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.17.0, which was
This file was extended by shadow $as_me 4.17.2, which was
generated by GNU Autoconf 2.71. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -20915,7 +20915,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.17.0
shadow config.status 4.17.2
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], 5)
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.17.0], [pkg-shadow-devel@lists.alioth.debian.org], [],
AC_INIT([shadow], [4.17.2], [pkg-shadow-devel@lists.alioth.debian.org], [],
[https://github.com/shadow-maint/shadow])
AM_INIT_AUTOMAKE([1.11 foreign dist-xz subdir-objects tar-pax])
AC_CONFIG_MACRO_DIRS([m4])

View File

@@ -5,7 +5,7 @@
#include "config.h"
#if defined(__GNUC__)
#if (__GNUC__ >= 10)
# define MAYBE_UNUSED [[gnu::unused]]
# define NORETURN [[gnu::__noreturn__]]
# define format_attr(type, fmt, va) [[gnu::format(type, fmt, va)]]

View File

@@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: 1996-2000, Marek Michałkiewicz
// SPDX-FileCopyrightText: 2001-2005, Tomasz Kłoczko
// SPDX-FileCopyrightText: 2005-2008, Nicolas François
// SPDX-FileCopyrightText: 2023-2024, Alejandro Colomar <alx@kernel.org>
// SPDX-FileCopyrightText: 2023-2025, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: BSD-3-Clause
@@ -27,8 +27,6 @@
#include <limits.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <sys/param.h>
#include <unistd.h>
#include "defines.h"
@@ -36,6 +34,11 @@
#include "string/strcmp/streq.h"
#ifndef LOGIN_NAME_MAX
# define LOGIN_NAME_MAX 256
#endif
int allow_bad_names = false;
@@ -44,12 +47,11 @@ login_name_max_size(void)
{
long conf;
errno = 0;
conf = sysconf(_SC_LOGIN_NAME_MAX);
if (conf == -1 && errno != 0)
if (conf == -1)
return LOGIN_NAME_MAX;
return MIN(conf, PTRDIFF_MAX);
return conf;
}

View File

@@ -55,7 +55,7 @@ void setsgent (void)
if (NULL != shadow) {
rewind (shadow);
} else {
shadow = fopen (SGROUP_FILE, "r");
shadow = fopen (SGROUP_FILE, "re");
}
}

View File

@@ -32,7 +32,7 @@ static int run_part(char *script_path, const char *name, const char *action)
setenv("SUBJECT",name,1);
execv(script_path,args);
fprintf(shadow_logfd, "execv: %s\n", strerror(errno));
exit(1);
_exit(1);
}
pid_status = wait(&wait_status);

View File

@@ -41,7 +41,7 @@ void setspent (void)
if (NULL != shadow) {
rewind (shadow);
}else {
shadow = fopen (SHADOW_FILE, "r");
shadow = fopen (SHADOW_FILE, "re");
}
}

View File

@@ -35,11 +35,11 @@ run_command(const char *cmd, const char *argv[],
(void) execve (cmd, (char * const *) argv,
(char * const *) envp);
if (ENOENT == errno) {
exit (E_CMD_NOTFOUND);
_exit (E_CMD_NOTFOUND);
}
fprintf (shadow_logfd, "%s: cannot execute %s: %s\n",
shadow_progname, cmd, strerror (errno));
exit (E_CMD_NOEXEC);
_exit (E_CMD_NOEXEC);
} else if ((pid_t)-1 == pid) {
fprintf (shadow_logfd, "%s: cannot execute %s: %s\n",
shadow_progname, cmd, strerror (errno));

View File

@@ -1,2 +1,2 @@
<!ENTITY GROUP_NAME_MAX_LENGTH '32'>
<!ENTITY SHADOW_UTILS_VERSION '4.17.0'>
<!ENTITY SHADOW_UTILS_VERSION '4.17.2'>

View File

@@ -2,12 +2,12 @@
.\" Title: chfn
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "CHFN" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHFN" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "NEWGRP" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "NEWGRP" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "SG" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "SG" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "GSHADOW" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "GSHADOW" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "GROUPDEL" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPDEL" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "LOGOUTD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "LOGOUTD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "NOLOGIN" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "NOLOGIN" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Danish
.\"
.TH "VIPW" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "VIPW" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "CHAGE" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHAGE" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "CHFN" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHFN" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "CHSH" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHSH" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "EXPIRY" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "EXPIRY" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GPASSWD" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "GPASSWD" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LOGIN" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "LOGIN" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "NEWGRP" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "NEWGRP" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "PASSWD" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "PASSWD" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -63,7 +63,7 @@ Die unbedachte Auswahl von oder der sorglose Umgang mit ihnen macht Passw\(:orte
.PP
As a general guideline, passwords should be long and random\&. It\*(Aqs fine to use simple character sets, such as passwords consisting only of lowercase letters, if that helps memorizing longer passwords\&. For a password consisting only of lowercase English letters randomly chosen, and a length of 32, there are 26^32 (approximately 2^150) different possible combinations\&. Being an exponential equation, it\*(Aqs apparent that the exponent (the length) is more important than the base (the size of the character set)\&.
.PP
Ratschl\(:age, wie Sie ein sicheres Passwort w\(:ahlen, finden Sie unter http://de\&.wikipedia\&.org/wiki/Passwort#Wahl_von_sicheren_Passw%C3%B6rter \&.
You can find advice on how to choose a strong password on https://en\&.wikipedia\&.org/wiki/Password_strength
.SH "OPTIONEN"
.PP
The options which apply to the

View File

@@ -2,12 +2,12 @@
.\" Title: sg
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SG" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "SG" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SU" "1" "25.12.2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "SU" "1" "11.01.2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: Library Calls
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SHADOW" "3" "25.12.2024" "shadow\-utils 4\&.17\&.0" "Library Calls"
.TH "SHADOW" "3" "11.01.2025" "shadow\-utils 4\&.17\&.2" "Library Calls"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "FAILLOG" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuratio"
.TH "FAILLOG" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GSHADOW" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "GSHADOW" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LIMITS" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LIMITS" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LOGIN\&.ACCESS" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LOGIN\&.ACCESS" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LOGIN\&.DEFS" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LOGIN\&.DEFS" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "PASSWD" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "PASSWD" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "PORTTIME" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "PORTTIME" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SHADOW" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SHADOW" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SUAUTH" "5" "25.12.2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SUAUTH" "5" "11.01.2025" "shadow\-utils 4\&.17\&.2" "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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "CHGPASSWD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "CHGPASSWD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "CHPASSWD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "CHPASSWD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "FAILLOG" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "FAILLOG" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GROUPADD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPADD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GROUPDEL" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPDEL" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GROUPMEMS" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPMEMS" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GROUPMOD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPMOD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "GRPCK" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GRPCK" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LASTLOG" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "LASTLOG" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "LOGOUTD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "LOGOUTD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "NEWUSERS" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "NEWUSERS" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "NOLOGIN" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "NOLOGIN" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "PWCK" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "PWCK" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "PWCONV" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "PWCONV" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "SULOGIN" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "SULOGIN" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "USERADD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERADD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: userdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "USERDEL" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERDEL" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "USERMOD" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERMOD" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25.12.2024
.\" Date: 11.01.2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: German
.\"
.TH "VIPW" "8" "25.12.2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "VIPW" "8" "11.01.2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "CHAGE" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHAGE" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "CHFN" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHFN" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "CHSH" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHSH" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "EXPIRY" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "EXPIRY" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GPASSWD" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "GPASSWD" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LOGIN" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "LOGIN" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "NEWGIDMAP" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "NEWGIDMAP" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "NEWGRP" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "NEWGRP" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "NEWUIDMAP" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "NEWUIDMAP" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "PASSWD" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "PASSWD" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -63,7 +63,7 @@ Les compromissions de la s\('ecurit\('e des mots de passe r\('esultent le plus s
.PP
As a general guideline, passwords should be long and random\&. It\*(Aqs fine to use simple character sets, such as passwords consisting only of lowercase letters, if that helps memorizing longer passwords\&. For a password consisting only of lowercase English letters randomly chosen, and a length of 32, there are 26^32 (approximately 2^150) different possible combinations\&. Being an exponential equation, it\*(Aqs apparent that the exponent (the length) is more important than the base (the size of the character set)\&.
.PP
Vous pouvez trouver des conseils sur la fa\(,con de choisir un mot de passe robuste sur http://en\&.wikipedia\&.org/wiki/Password_strength (en anglais)\&.
You can find advice on how to choose a strong password on https://en\&.wikipedia\&.org/wiki/Password_strength
.SH "OPTIONS"
.PP
The options which apply to the

View File

@@ -2,12 +2,12 @@
.\" Title: sg
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SG" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "SG" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SU" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "SU" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: Library Calls
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SHADOW" "3" "25/12/2024" "shadow\-utils 4\&.17\&.0" "Library Calls"
.TH "SHADOW" "3" "11/01/2025" "shadow\-utils 4\&.17\&.2" "Library Calls"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "FAILLOG" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuratio"
.TH "FAILLOG" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GSHADOW" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "GSHADOW" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LIMITS" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LIMITS" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LOGIN\&.ACCESS" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LOGIN\&.ACCESS" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LOGIN\&.DEFS" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "LOGIN\&.DEFS" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "PASSWD" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "PASSWD" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "PORTTIME" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "PORTTIME" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SHADOW" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SHADOW" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SUAUTH" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SUAUTH" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SUBGID" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SUBGID" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: File Formats and Configuration Files
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SUBUID" "5" "25/12/2024" "shadow\-utils 4\&.17\&.0" "File Formats and Configuration"
.TH "SUBUID" "5" "11/01/2025" "shadow\-utils 4\&.17\&.2" "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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "CHGPASSWD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "CHGPASSWD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "CHPASSWD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "CHPASSWD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "FAILLOG" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "FAILLOG" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GROUPADD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPADD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GROUPDEL" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPDEL" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GROUPMEMS" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPMEMS" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GROUPMOD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GROUPMOD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "GRPCK" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "GRPCK" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LASTLOG" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "LASTLOG" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "LOGOUTD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "LOGOUTD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "NEWUSERS" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "NEWUSERS" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "NOLOGIN" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "NOLOGIN" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "PWCK" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "PWCK" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "PWCONV" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "PWCONV" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "SULOGIN" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "SULOGIN" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "USERADD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERADD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

View File

@@ -2,12 +2,12 @@
.\" Title: userdel
.\" Author: Julianne Frances Haugh
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "USERDEL" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERDEL" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "USERMOD" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "USERMOD" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: System Management Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: French
.\"
.TH "VIPW" "8" "25/12/2024" "shadow\-utils 4\&.17\&.0" "System Management Commands"
.TH "VIPW" "8" "11/01/2025" "shadow\-utils 4\&.17\&.2" "System Management Commands"
.\" -----------------------------------------------------------------
.\" * 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: 25/12/2024
.\" Date: 11/01/2025
.\" Manual: User Commands
.\" Source: shadow-utils 4.17.0
.\" Source: shadow-utils 4.17.2
.\" Language: Italian
.\"
.TH "CHAGE" "1" "25/12/2024" "shadow\-utils 4\&.17\&.0" "User Commands"
.TH "CHAGE" "1" "11/01/2025" "shadow\-utils 4\&.17\&.2" "User Commands"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------

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