mirror of
https://github.com/atmoz/sftp.git
synced 2024-11-17 12:51:33 -05:00
Use getent to check the existence of user/group
This commit is contained in:
parent
f315792bd7
commit
0fba0da794
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ function createUser() {
|
|||
gid="${args[$[$index+3]]}"; validateArg "GID" "$gid" "$reGid" || return 1
|
||||
dir="${args[$[$index+4]]}"; validateArg "dirs" "$dir" "$reDir" || return 1
|
||||
|
||||
if $(cat /etc/passwd | cut -d: -f1 | grep -q "^$user:"); then
|
||||
if getent passwd $user > /dev/null; then
|
||||
log "WARNING: User \"$user\" already exists. Skipping."
|
||||
return 0
|
||||
fi
|
||||
|
@ -63,7 +63,7 @@ function createUser() {
|
|||
fi
|
||||
|
||||
if [ -n "$gid" ]; then
|
||||
if ! $(cat /etc/group | cut -d: -f3 | grep -q "$gid"); then
|
||||
if ! getent group $gid > /dev/null; then
|
||||
groupadd --gid $gid "group_$gid"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue