#!/bin/sh
. /lib/functions.sh

case "$ACTION" in
released)
	if [ "$SEEN" -gt 5 -a "$SEEN" -lt 15 ]
	then
		passwd -d root
		reboot -f
	fi
;;
esac
return 0		

		