forked from ungleich-public/cdist
redirect stdout+stderr of userdel
If no mail-spoolfile exists for the user the error reporting was visible in the cdist-run.
This commit is contained in:
parent
a1bf381370
commit
c995d08ce2
1 changed files with 2 additions and 2 deletions
|
@ -135,10 +135,10 @@ elif [ "$state" = "absent" ]; then
|
|||
if grep -q "^${name}:" "$__object/explorer/passwd"; then
|
||||
#user exists, but state != present, so delete it
|
||||
if [ -f "$__object/parameter/remove-home" ]; then
|
||||
echo userdel -r "${name}"
|
||||
printf "userdel -r %s >/dev/null 2>&1\n" "${name}"
|
||||
echo "userdel -r" >> "$__messages_out"
|
||||
else
|
||||
echo userdel "${name}"
|
||||
printf "userdel %s >/dev/null 2>&1\n" "${name}"
|
||||
echo "userdel" >> "$__messages_out"
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue