Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.23 KB | None | 0 0
  1. - hosts: 127.0.0.1
  2.   connection: local
  3.   become: false
  4.   tasks:
  5.   - name: create hosts_active group
  6.     add_host:
  7.       hostname: "{{ item }}"
  8.       group: "hosts_active"
  9.     with_items: "{{ groups['all'] }}"
  10.     check_mode: no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement