# Gryphon IPsec Container Cleanup Cron Job
# Runs every minute to check for idle containers and destroy them after 1 hour of inactivity
# 
# This cron job monitors IPsec client connections and destroys containers
# that have had 0 connected clients for more than 1 hour

SHELL=/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# Run cleanup script every minute
* * * * * root /sbin/ipsec_container_cleanup.sh >/dev/null 2>&1
