Disable AEM's ink checker using cURL
As per this article - https://helpx.adobe.com/experience-manager/kb/DisableLinkChecker.html to disable link checker in AEM we need to follow these steps -
Disable all link checking by configuration
- Go to /system/console/configMgr and login as admin.
- Find the "Link Checker Transformer"
- Check the "Disable Checking" box and save
- Go to /crx/explorer and login as admin
- Open "Content Explorer"
- Browse to /var/linkchecker
- Right click the node and select "Delete Recursively"
- Click "Save All"
I want to include disabling link checker as a part of my AEM server's deployment/setup script. Is there a way to do this using cURL?
Thanks