diff --git a/server/plugins-available/shelluser_base_plugin.inc.php b/server/plugins-available/shelluser_base_plugin.inc.php index bf834c76e1fb6e4c207ff421c73c72031dd29f28..59cfad99d5e699b10ab8e30327d5bfa74d4d5c33 100755 --- a/server/plugins-available/shelluser_base_plugin.inc.php +++ b/server/plugins-available/shelluser_base_plugin.inc.php @@ -141,7 +141,7 @@ class shelluser_base_plugin { // Get the UID of the user $userid = intval($app->system->getuid($data['old']['username'])); if($userid > $this->min_uid) { - $command = 'userdel'; + $command = 'userdel --force'; $command .= ' '.escapeshellcmd($data['old']['username']); exec($command);