From 9fcf084f06ac63b1453af66d77f7bdf27efc8cd7 Mon Sep 17 00:00:00 2001 From: "l.cuper@t-systems.com" Date: Thu, 20 Aug 2026 22:49:37 +0200 Subject: [PATCH] Install cron for the graphite cleanup crontab Graphite provisioning failed with: Failed to find required executable "crontab" in paths: ... The rewritten Debian vars dropped 'cron', which main still lists. The graphite role is the only one using ansible.builtin.cron ('Run periodic cleanup'), and that module needs the crontab binary. apparmor-profiles was dropped in the same rewrite but is never referenced by any task, so it stays out. --- cloudmon/ansible/project/roles/graphite/vars/Debian.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloudmon/ansible/project/roles/graphite/vars/Debian.yaml b/cloudmon/ansible/project/roles/graphite/vars/Debian.yaml index 3d95ca0..cc7e97b 100644 --- a/cloudmon/ansible/project/roles/graphite/vars/Debian.yaml +++ b/cloudmon/ansible/project/roles/graphite/vars/Debian.yaml @@ -7,5 +7,7 @@ remove_packages: [] packages: - netcat-openbsd + # ansible.builtin.cron needs the crontab binary. + - cron container_command: docker