action-ansible-playbook/test/playbook.yml

13 lines
245 B
YAML
Raw Permalink Normal View History

2020-05-14 12:19:22 -06:00
- name: Test Action
hosts: all
tasks:
2021-02-11 09:28:46 -07:00
- name: Copy file
copy:
src: requirements.yml
dest: /tmp/requirements.yml
2021-02-11 09:08:44 -07:00
- name: Install cowsay
become: yes
apt:
name: cowsay
update_cache: yes