#!/bin/sh

# Save the DHCP lease database to the config path.
if [ -d "/var/dhcpd/var/db" ]; then
	/usr/local/etc/rc.conf_mount_rw
	cd / && tar -czf /conf/dhcpleases.tgz -C / var/dhcpd/var/db/
	/usr/local/etc/rc.conf_mount_ro
fi