#!/bin/sh
#
#  Clean up the old "seen" directory entries.

[ -d /etc/wifiroamd/seen ] || exit 0
find /etc/wifiroamd/seen/ -type f -mtime +30 -print0 | xargs --no-run-if-empty -0 rm
