Files
startusingansible/examples/014_stack_status/control.yml

10 lines
186 B
YAML

---
- hosts: control
become: true
tasks:
- name: install tools
apt: name={{item}} state=present update_cache=yes
with_items:
- curl
- python-httplib2