Files
frigate/move_to_nfs.sh
T
2024-10-20 13:05:00 +11:00

10 lines
226 B
Bash

#!/bin/bash
LOCAL_DIR="/media/frigate"
NFS_DIR="/mnt/nfs_frigate"
# Check if NFS is mounted
if mountpoint -q "$NFS_DIR"; then
# Move files older than 1 day
find "$LOCAL_DIR" -type f -mtime +1 -exec mv {} "$NFS_DIR" \;
fi