fix defect :change all logger calls to put xcat msgs into local4 - ID: 3513525

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12675 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
immarvin 2012-05-15 03:08:29 +00:00
parent e71c83bd7c
commit b4909c86bb

View File

@ -85,7 +85,7 @@ sub runcmd {
my @output = `$cmd`;
my $rc = $? >> 8;
if ($rc) {
system("logger -t xcat 'confignimsh: command $cmd failed with rc $rc: " . join('',@output) . "'");
system("logger -t xcat -p local4.err 'confignimsh: command $cmd failed with rc $rc: " . join('',@output) . "'");
exit $rc;
}
}