Lamdaemon: do not show message if home directory to delete was not found (154)

This commit is contained in:
Roland Gruber 2013-09-16 17:30:42 +00:00
parent 2740e4451a
commit 7df62ed7fb
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@
- fixed bugs: - fixed bugs:
-> Custom fields: auto-adding object classes via profile editor fixed -> Custom fields: auto-adding object classes via profile editor fixed
-> PHP 5.5 compatibility -> PHP 5.5 compatibility
-> Lamdaemon: do not show message if home directory to delete was not found (154)
18.06.2013 4.2.1 18.06.2013 4.2.1

View File

@ -267,7 +267,8 @@ sub removeHomedir {
} }
} }
else { else {
$return = "INFO,Lamdaemon ($hostname),The directory which should be deleted was not found (skipped)."; $return = "Ok";
logMessage(LOG_INFO, "The directory " . $vals[3] . " which should be deleted was not found (skipped).");
} }
($<, $>) = ($>, $<); # Give up root previleges ($<, $>) = ($>, $<); # Give up root previleges
} }