Sto usando macOS Server per gestire i nostri iPad e Profile Manager ha costantemente problemi che richiedono di interrompere il servizio e riavviare il server. Pulisco anche le attività completate e non completate (questo a volte aiuta). Vorrei utilizzare Automator per eseguire un'attività giornaliera per cancellare le attività completate dal database e una per cancellare settimanalmente le attività non completate.
Ecco il codice che ho, qualcuno può aiutarmi a configurarlo per Automator?
Cancella attività completate:
sudo -u _devicemgr psql -U _devicemgr -d devicemgr_v2m0 -h /Library/Server/ProfileManager/Config/var/PostgreSQL -c "DELETE FROM library_item_tasks WHERE completed_at IS NOT NULL"
Cancella non completato:
sudo -u _devicemgr psql -U _devicemgr -d devicemgr_v2m0 -h /Library/Server/ProfileManager/Config/var/PostgreSQL -c "DELETE FROM library_item_tasks WHERE completed_at IS NULL"