mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
9 lines
189 B
Bash
Executable File
9 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# copy cache file to /conf for permanent storage
|
|
/sbin/umount -f /cf
|
|
/sbin/mount -w -o noatime /cf
|
|
/bin/cp /var/db/ez-ipupdate.cache /conf
|
|
/sbin/umount -f /cf
|
|
/sbin/mount -r /cf
|