--- # Cron jobs for edge servers. - name: "Weekly maintenance" ansible.builtin.cron: name: "Weekly maintenance on the edge. Be sure to set up the maintenance.cfg file." minute: "0" hour: "6" weekday: "6" job: "/p4/common/bin/run_if_edge.sh ${INSTANCE} /p4/sdp/Maintenance/edge_maintenance ${INSTANCE}" - name: "Unlock edge" ansible.builtin.cron: name: "Unlock edge." minute: "0" hour: "*/6" job: "/p4/common/bin/run_if_edge.sh ${INSTANCE} p4 unlock -x > /dev/null 2>&1" - name: "Daily checkpoint" ansible.builtin.cron: name: "Daily Checkpoint" minute: "5" hour: "6" job: "/p4/common/bin/run_if_edge.sh ${INSTANCE} /p4/common/bin/daily_checkpoint.sh ${INSTANCE}" - name: "Replica status" ansible.builtin.cron: name: "Replica Status" minute: "*/6" job: "/p4/common/bin/run_if_edge.sh ${INSTANCE} /p4/common/bin/replica_status.sh ${INSTANCE} > /dev/null" - name: "Cache clean" ansible.builtin.cron: name: "Cache Clean" minute: "0" job: "/p4/common/bin/run_if_edge.sh ${INSTANCE} /p4/common/bin/cacheclean.sh ${INSTANCE}"