test/playbook: install cowsay via apt

This commit is contained in:
Dawid Dziurla 2021-02-11 17:08:44 +01:00
parent 3c534b3ba0
commit 9c19e7ec30
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

View File

@ -1,7 +1,8 @@
- name: Test Action - name: Test Action
hosts: all hosts: all
tasks: tasks:
- name: Copy action.yml - name: Install cowsay
copy: become: yes
src: ../action.yml apt:
dest: /tmp/action.yml name: cowsay
update_cache: yes