chronsync 0.2.2

Lightweight, real-time reloading cron-like task scheduler daemon
{
  "tasks": [
    {
      "name": "ping_test_service",
      "cron_schedule": "*/1 * * * * *",
      "command": "/bin/sh",
      "args": [
        "-c",
        "/bin/echo \"Service check at: $(date)\""
      ],
      "timeout": 5
    },
    {
      "name": "hourly_cleanup",
      "cron_schedule": "0 0 * * * *",
      "command": "/usr/bin/find",
      "args": [
        "/tmp",
        "-type",
        "f",
        "-mtime",
        "+7",
        "-delete"
      ],
      "timeout": 60
    }
  ]
}