aboutsummaryrefslogtreecommitdiffstats
path: root/add-user
blob: 39fd59a77752f252cf4dd007f4321d5586d76537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#---------------------------------------------------------------
# Project         : Mageia Linux
# Module          : rpm-helper
# File            : add-user
# Version         : $Id$
# Author          : Frederic Lepied
# Created On      : Mon Jul  8 08:14:34 2002
# Purpose         : helper script for rpm scriptlets to add a
#		    system user.
#---------------------------------------------------------------

if [ $# -lt 5 ]; then
    echo "usage: $0 <pkg name> <num installed> <user name> <home dir> <shell>" 1>&2
    exit 1
fi

pkg=$1				# name of the package
num=$2				# number of packages installed
name=$3				# name of the user
dir=$4				# home directory
shell=$5			# shell

if ! getent passwd "$name" > /dev/null 2>&1; then
    /usr/sbin/useradd -r -M -U \
    	-s "$shell" -d "$dir" -c "system user for $pkg" "$name" > /dev/null
fi

exit 0

# add-user ends here