add return value

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14422 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
immarvin 2012-11-25 04:34:56 +00:00
parent df8450cf20
commit 57ffc27ca1

View File

@ -3,5 +3,8 @@
#(C)IBM Corp
#
umount /post 2>&1 | logger -t xcat
result=`umount /post 2>&1`
returncode=$?
logger -t xcat -p local4.info $result
exit $returncode