action-ansible-playbook/test/playbook.yml
2021-02-11 17:28:46 +01:00

13 lines
245 B
YAML

- name: Test Action
hosts: all
tasks:
- name: Copy file
copy:
src: requirements.yml
dest: /tmp/requirements.yml
- name: Install cowsay
become: yes
apt:
name: cowsay
update_cache: yes