aboutsummaryrefslogtreecommitdiffstats
path: root/add-user
blob: ac541867423da397a5d11eca3865c30c35fdf153 (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         : Mandriva 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