mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-17 01:54:49 +00:00
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Save the DHCP lease database to the config path.
|
|
if [ -d "/var/dhcpd/var/db" ]; then
|
|
cd / && tar -czf /conf/dhcpleases.tgz -C / var/dhcpd/var/db/
|
|
fi
|