Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. - hosts: all
  2. become: yes
  3. tasks:
  4. - name: Ansible apt with_items example
  5. apt:
  6. name: "{{ item }}"
  7. update_cache: true
  8. state: present
  9. with_items:
  10. - 'mc'
  11. - 'git'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement