#!/bin/sh

if [ -f /etc/wireless/l1profile.dat ]; then
	DAT_PATH=/etc/wireless/l1profile.dat
fi

if [ "$ACTION" = "pressed" -a "$BUTTON" = "wps" ]; then
	echo "WPS Button Pressed........." > /dev/console
	killall -USR2 wps_pbcd
fi

return 0
