common/tasks/telemetry.yaml
Simon Cornet 2272aa6a58
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

9 lines
263 B
YAML

---
# delete daily popularity contest cronjob
- name: "telemetry - delete popularity-contest cron"
ansible.builtin.file:
path: "/etc/cron.daily/popularity-contest"
state: "absent"
when: 'ansible_facts["distribution"] == "Ubuntu"'
tags: "telemetry"