mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-02-02 20:59:02 +08:00
Replaces many references to command: with ansible.builtin.command Signed-off-by: Ryan Lerch <rlerch@redhat.com>
10 lines
206 B
YAML
10 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 == .
|