#! /bin/sh
#
# © 2011 Western Digital Technologies, Inc. All rights reserved.

if [ "`/usr/local/sbin/getServiceStartup.sh access`" == "enabled" ]; then
	/etc/init.d/access status >/dev/null 2>/dev/null
	if [ $? == 0 ]; then
		/etc/init.d/access restart >/dev/null 2>&1 || true
	fi
fi

exit 0
