2007-10-26 22:44:33 +00:00
|
|
|
#!/bin/ksh
|
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
#(C)IBM Corp
|
|
|
|
#
|
|
|
|
|
2012-11-25 04:34:56 +00:00
|
|
|
result=`umount /post 2>&1`
|
|
|
|
returncode=$?
|
|
|
|
logger -t xcat -p local4.info $result
|
|
|
|
exit $returncode
|
2007-10-26 22:44:33 +00:00
|
|
|
|