mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
10 lines
323 B
YAML
10 lines
323 B
YAML
|
- name: Install iiab lib files
|
||
|
template:
|
||
|
src: "{{ item.src }}"
|
||
|
dest: "{{ item.dest }}"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
with_items:
|
||
|
- { src: 'iiab_const.py.j2', dest: '{{ py3_dist_path }}/iiab/iiab_const.py' }
|
||
|
- { src: 'iiab_lib.py', dest: '{{ py3_dist_path }}/iiab/iiab_lib.py' }
|