S
Size: a a a
S
NK
NK
NK
NK
NK
- pip:
name: bottle
virtualenv: /my_app/venv
а дальше хз...
NK
NK
DS
NK
---
- hosts: localhost
vars_files:
- flores.yml
- users.yml
become: yes
become_user: root
tasks:
- name: bla bla test
debug:
msg: "bla {{ item.id }} bla {{ item.users }} "
with_items:
- "{{ users }}"
- "{{ flores }}"
NK
---
- hosts: localhost
vars_files:
- flores.yml
- users.yml
become: yes
become_user: root
tasks:
- name: bla bla test
debug:
msg: "bla {{ item.users }} "
with_items: "{{ users }}"
M
NK
AK
NK
---
flores:
- { name: test1, id: "001", text: "this is text 1" }
- { name: test2, id: "002", text: "this is text 2" }
---
name: test 1
id: "001"
text: "this is text"
users: bob
---
- hosts: localhost
vars_files:
- flores.yml
become: yes
become_user: root
tasks:
- name: Create DIRECTORY
debug:
msg: "IT IS ORE {{ name }} {{ users }} {{ text }}"
AK
NK
NK
NK
PK