mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-07-22 12:21:10 +00:00
15 lines
278 B
Bash
Executable File
15 lines
278 B
Bash
Executable File
#!/bin/ksh
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
#(C)IBM Corp
|
|
#
|
|
if [ -n "$LOGLABEL" ]; then
|
|
log_label=$LOGLABEL
|
|
else
|
|
log_label="xcat"
|
|
fi
|
|
result=`umount /post 2>&1`
|
|
returncode=$?
|
|
logger -t $log_label -p local4.info $result
|
|
exit $returncode
|
|
|