Add missing subjects (P1), mono
This commit is contained in:
parent
7bc7891837
commit
0823c01bce
5 changed files with 26 additions and 0 deletions
8
roles/P1-63277/meta/main.yml
Normal file
8
roles/P1-63277/meta/main.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Programiranje 1
|
||||||
|
# luka.furst@fri.uni-lj.si
|
||||||
|
# JDK, mono
|
||||||
|
dependencies:
|
||||||
|
- role: jdk
|
||||||
|
- role: gedit
|
||||||
|
- role: mono
|
||||||
|
- role: vscode
|
7
roles/P1-63702/meta/main.yml
Normal file
7
roles/P1-63702/meta/main.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Programiranje 1
|
||||||
|
# tomaz.hocevar@fri.uni-lj.si
|
||||||
|
# vscode, gcc, g++
|
||||||
|
dependencies:
|
||||||
|
- role: gedit
|
||||||
|
- role: vscode
|
||||||
|
- role: c_development
|
4
roles/mono/tasks/main.yml
Normal file
4
roles/mono/tasks/main.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
- import_tasks: main_win.yml
|
||||||
|
when: ansible_connection == 'winrm'
|
||||||
|
- import_tasks: main_lin.yml
|
||||||
|
when: ansible_connection == 'ssh'
|
4
roles/mono/tasks/main_lin.yml
Normal file
4
roles/mono/tasks/main_lin.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
- name: Install Mono
|
||||||
|
apt:
|
||||||
|
name: mono-devel
|
||||||
|
state: latest
|
3
roles/mono/tasks/main_win.yml
Normal file
3
roles/mono/tasks/main_win.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
- name: Do not install Mono
|
||||||
|
debug:
|
||||||
|
msg: "Do not install Mono"
|
Loading…
Add table
Add a link
Reference in a new issue