bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone

Blame tests/p_shadow-utils/19-userdel_tests

Athmane Madjoudj 536354
#!/bin/bash
Athmane Madjoudj 536354
# Author: Iain Douglas <centos@1n6.org.uk>
Athmane Madjoudj 536354
Christoph Galuschka 06c925
t_Log "Running $0 - Delete user shadowuser"
Athmane Madjoudj 536354
userdel -r shadowuser
Athmane Madjoudj 536354
t_CheckExitStatus $?
Athmane Madjoudj 536354
echo "Check user was deleted"
Athmane Madjoudj 536354
grep -q "^shadowuser" /etc/passwd && { t_Log "FAIL: shadowuser not deletd"; exit $FAIL;}
Athmane Madjoudj 536354
t_Log "PASS"