Laptop Rolle repariert (?)

This commit is contained in:
Frank Schiebel 2025-11-14 17:08:06 +01:00
parent 5379166689
commit 96175541bf
2 changed files with 7 additions and 6 deletions

View file

@ -4,6 +4,9 @@
hosts: all
remote_user: ansible
become: yes
vars_files:
- vars-qgsoftware.yml
vars:
domain: "{{ ansible_domain }}"
@ -21,12 +24,6 @@
## Local mirror for mscorefonts. Remove or leave empty to use no mirror:
mirror_msfonts: http://netboot.qgm.lan/mscorefonts/
## Local Mirror for Greenfoot and BlueJ. Leave empty to skip installation of bluej and greenfoot
mirror_javadev: http://netboot.qgm.lan/javadev/
## Bluej/Greenfoot Versionen
bluej_target_version: "5.2.0"
greenfoot_target_version: "3.7.1"
# Linbo Passwort

View file

@ -13,6 +13,10 @@
register: command_output
- set_fact:
greenfoot_installed_version: "{{ command_output.stdout }}"
- name: BlueJ URI
ansible.builtin.debug:
msg: "{{ mirror_javadev }}/bluej-{{ bluej_target_version }}.deb"
- name: Install bluej if necessary
ansible.builtin.apt: