Replaces many references to file: with ansible.builtin.file Signed-off-by: Ryan Lerch <rlerch@redhat.com>
12 lines
418 B
YAML
12 lines
418 B
YAML
---
|
|
- name: Put a hotspot.txt file in place.
|
|
hosts: proxies:proxies_stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
tasks:
|
|
- ansible.builtin.file: dest=/srv/web/fedoraproject.org/static/ state=directory
|
|
- copy: src=hotspot.txt dest=/srv/web/fedoraproject.org/static/hotspot.txt
|