result=`ps -aef | grep vold | grep -v "grep vold"`
status=$?
if [ "X$result" != "X" ]
then 
	echo $result | awk '{print $2}'
	exit $?
else  
	exit $status
fi
