11 lines
166 B
YAML
11 lines
166 B
YAML
|
---
|
||
|
- hosts: "{{ variable_host | default('lab15_standard') }}"
|
||
|
gather_facts: no
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: install pydxl
|
||
|
pip:
|
||
|
name: pydxl
|
||
|
|
||
|
|