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
ype='submit' value='reload'/>
authorThierry Vignaud <thierry.vignaud@gmail.com>2014-01-27 08:03:17 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2014-01-27 08:03:17 +0100
commitbae73cdaf31192a19e63768af6ed8a1a37dbe88f (patch)
treea28dd4f2f79fac0ccf16be0208392c961e03258c /urpmi.bash-completion
parentb25692d774bf4e13faf0bdc240e7ca993afb1968 (diff)
downloadurpmi-bae73cdaf31192a19e63768af6ed8a1a37dbe88f.tar
urpmi-bae73cdaf31192a19e63768af6ed8a1a37dbe88f.tar.gz
urpmi-bae73cdaf31192a19e63768af6ed8a1a37dbe88f.tar.bz2
urpmi-bae73cdaf31192a19e63768af6ed8a1a37dbe88f.tar.xz
urpmi-bae73cdaf31192a19e63768af6ed8a1a37dbe88f.zip
add --downgrade to bash-completion
Diffstat (limited to 'urpmi.bash-completion')