From b9a4cdf9712ab6e31c5c2fd2c5c9e37d6aeffabc Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 15 May 2012 07:17:36 +0000 Subject: [PATCH] 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@12704 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/setupnfsv4replication | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xCAT/postscripts/setupnfsv4replication b/xCAT/postscripts/setupnfsv4replication index c42f722da..2389cea83 100755 --- a/xCAT/postscripts/setupnfsv4replication +++ b/xCAT/postscripts/setupnfsv4replication @@ -57,13 +57,14 @@ sub runcmd $rc = $? >> 8; if ($rc > 0) { - `logger -t xcat "runcmd $cmd failed, error message is:"`; + `logger -t xcat -p local4.err "runcmd $cmd failed, error message is:"`; my $errmsg; foreach my $err (@::outref) { $errmsg .= $err; } - `logger -t xcat "$errmsg"`; + `logger -t xcat -p local4.err "$errmsg"`; + exit; } }