Cronjobs

Hi -

I’ve got a task to manage cronjobs on systems that works perfectly fine unless I have the following as the job:

find /iqstage01/archive/* /iqstage01/error/* -type f -exec gzip {} ;

Ansible doesn’t like the escape on the semi-colon. Does anyone have any ideas why?

Thanks,
Adam

For what it’s worth, just escape the escape & this works:

find /iqstage01/archive/* /iqstage01/error/* -type f -exec gzip {} \;