fix(delete): wait 2s before deleting user
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Florian Schmitt 2025-01-24 11:25:07 +03:00
parent eac36d3e32
commit 1dfbed36e8

View file

@ -204,7 +204,7 @@ function createUnixUserWithQuota($user, $quota)
function removeUnixUser($user) function removeUnixUser($user)
{ {
exec('deluser --remove-home ' . $user, $output); exec('sleep 2s && deluser --remove-home ' . $user, $output);
// TODO : handle errors // TODO : handle errors
return; return;
} }