Add new dependencies and perhaps a maintainer for DPS
This commit is contained in:
parent
eb1e6012bd
commit
d0b2a77216
4 changed files with 14 additions and 0 deletions
|
@ -1,8 +1,11 @@
|
||||||
# Digitalno procesiranje signalov
|
# Digitalno procesiranje signalov
|
||||||
# Aleks.Huc@fri.uni-lj.si
|
# Aleks.Huc@fri.uni-lj.si
|
||||||
|
# metod.celestina@dewesoft.si
|
||||||
# Windows, GNU/Linux, Matlab, wfdb, Octave, Audacity
|
# Windows, GNU/Linux, Matlab, wfdb, Octave, Audacity
|
||||||
dependencies:
|
dependencies:
|
||||||
- role: matlab
|
- role: matlab
|
||||||
- role: wfdb
|
- role: wfdb
|
||||||
- role: octave
|
- role: octave
|
||||||
- role: audacity
|
- role: audacity
|
||||||
|
- role: numpy
|
||||||
|
- role: matplotlib
|
||||||
|
|
4
roles/numpy/tasks/main.yml
Normal file
4
roles/numpy/tasks/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
- import_tasks: main_win.yml
|
||||||
|
when: ansible_os_family == 'Windows'
|
||||||
|
- import_tasks: main_lin.yml
|
||||||
|
when: ansible_os_family == 'Debian'
|
5
roles/numpy/tasks/main_lin.yml
Normal file
5
roles/numpy/tasks/main_lin.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
- name: Install numpy
|
||||||
|
apt:
|
||||||
|
name:
|
||||||
|
- python3-numpy
|
||||||
|
state: latest
|
2
roles/numpy/tasks/main_win.yml
Normal file
2
roles/numpy/tasks/main_win.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
- name: Install numpy
|
||||||
|
win_command: pip install numpy
|
Loading…
Add table
Add a link
Reference in a new issue