fetch module - any way to ignore md5 checks?

I’ve built a handy log fetching script using the fetch module so that our developers & QA folks can retrieve log files from production servers that they otherwise wouldn’t have access to. It works great for archived logs, but it fails when trying to fetch the current log that our webservers, app servers, etc. are writing to since the md5sum is pretty much guaranteed to differ. Is there any way to tell the fetch module not to perform md5 checks so that we can pull down copies of live logs?

-Bruce

No, not currently. I’d go ahead and open up a github issue for this as a feature request.

Thanks, James, that’s pretty much what I figured. I was just perusing the codebase a bit and it looks like adding this in as an optional parameter won’t be too difficult. I’ll probably take a stab at implementing it tomorrow.

-Bruce