Add missing subjects (P1), mono

This commit is contained in:
Gašper Fele-Žorž 2024-08-29 10:11:22 +02:00
parent 7bc7891837
commit 0823c01bce
5 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# Programiranje 1
# luka.furst@fri.uni-lj.si
# JDK, mono
dependencies:
- role: jdk
- role: gedit
- role: mono
- role: vscode

View file

@ -0,0 +1,7 @@
# Programiranje 1
# tomaz.hocevar@fri.uni-lj.si
# vscode, gcc, g++
dependencies:
- role: gedit
- role: vscode
- role: c_development

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_connection == 'winrm'
- import_tasks: main_lin.yml
when: ansible_connection == 'ssh'

View file

@ -0,0 +1,4 @@
- name: Install Mono
apt:
name: mono-devel
state: latest

View file

@ -0,0 +1,3 @@
- name: Do not install Mono
debug:
msg: "Do not install Mono"