Green light won't stop blinking; blue light never comes on

All the reset button does is clear the “admin” password.  Resets root’s password to “welc0me”, set’s up the NAS to obtain it’s IP address by DHCP and reboots the NAS.  No more, no less.

For the technically savvy people . . .

NAS:~# cat /usr/local/sbin/resetButtonAction.sh
#!/bin/sh
#!/bin/sh
#
# © 2010 Western Digital Technologies, Inc. All rights reserved.
#
# resetButtonAction.sh
#
# This is called by resetbtnd whenever the reset button has met the criteria for a reset. This script implements the actions for the reset button.
#
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin

logger "reset button pressed, invoking reset actions"

# remove owner password
owner=`getOwner.sh`
modUserPassword.sh ${owner}

# set root password back to default
echo "root:welc0me" | chpasswd

# set network to dhcp
setNetworkDhcp.sh

reboot