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>
9 lines
172 B
YAML
9 lines
172 B
YAML
---
|
|
- name: Clear memcache
|
|
hosts: memcached:memcached-stg
|
|
serial: 1
|
|
|
|
tasks:
|
|
- name: Clear memcache
|
|
ansible.builtin.command: echo flush_all | nc localhost 11211
|