From 66b4577da34fc88f266ca181abccc039367a41bf Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Tue, 21 Jan 2020 19:18:03 +0300 Subject: [PATCH] Feat(cleanup-pip-cache): Add a playbook to cleanup pip cache Run role `cleanup-pip-cache` with default host. --- playbooks/cleanup-pip-cache.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 playbooks/cleanup-pip-cache.yml diff --git a/playbooks/cleanup-pip-cache.yml b/playbooks/cleanup-pip-cache.yml new file mode 100644 index 0000000..eaedaa6 --- /dev/null +++ b/playbooks/cleanup-pip-cache.yml @@ -0,0 +1,4 @@ +- name: Cleanup pip cache + hosts: "{{ hosts | default('localhost') }}" + roles: + - cleanup-pip-cache -- 2.39.2