Replaces many references to command: with ansible.builtin.command Signed-off-by: Ryan Lerch <rlerch@redhat.com>
9 lines
206 B
YAML
9 lines
206 B
YAML
---
|
|
- name: Clear varnish cache
|
|
hosts: proxies
|
|
user: root
|
|
serial: 1
|
|
|
|
tasks:
|
|
- name: Clear varnish
|
|
ansible.builtin.command: varnishadm -S /etc/varnish/secret -T 127.0.0.1:6082 ban req.url == .
|