Sometimes a device will stop reporting the status of items being deployed to it via the policy. The status of policy items is stored in JSON file located at /Library/Addigy/ansible/status.json. By deleting the status.json file, you can reset the information on deployment progress for the device. Try this command to delete the status.json file:
if sudo rm /Library/Addigy/ansible/status.json; then echo "Reset policy progress." && exit 0; else echo "Failed to reset policy progress by deleting status.json file." && exit 1; fi
If the command successfully deletes the file, it will output "Reset policy progress". Otherwise, the output will be "Failed to reset policy progress by deleting status.json file".
The above command can be run remotely via LiveTerminal, GoLive, or the Devices page.