Merge #3 `Improved cleanup of Sanity/sanity-test`

This commit is contained in:
Nathan Scott 2021-08-16 01:54:44 +00:00
commit 3499c7704b
1 changed files with 7 additions and 1 deletions

View File

@ -81,7 +81,13 @@ rlJournalStart
rlPhaseEnd
rlPhaseStartCleanup
[[ "${del}" == "yes" ]] && rlRun "userdel -r ${BUILD_USER}"
if [[ "${del}" == "yes" ]]; then
rlRun "pkill --signal SIGTERM -u ${BUILD_USER}" 0-255
sleep 3
rlRun "pkill --signal SIGKILL -u ${BUILD_USER}" 0-255
sleep 1
rlRun "userdel -rf ${BUILD_USER}" 0-255
fi
rlRun "popd"
rlRun "rm -r ${TmpDir}" 0 "Removing tmp directory"
rlPhaseEnd