Compare commits

..

No commits in common. "8f04d77d5805c04cd9451f78ae3a3057d5b95676" and "9552da52441788d4342edfd3a5ba59f9798405d7" have entirely different histories.

3 changed files with 671 additions and 691 deletions

File diff suppressed because it is too large Load diff

View file

@ -12,7 +12,6 @@
question: msttcorefonts/dlurl question: msttcorefonts/dlurl
value: "{{ mirror_msfonts }}" value: "{{ mirror_msfonts }}"
vtype: string vtype: string
ignore_errors: true
when: mirror_msfonts is defined and mirror_msfonts | length > 0 when: mirror_msfonts is defined and mirror_msfonts | length > 0
- name: Install desktop EDU packages and some more - name: Install desktop EDU packages and some more
@ -236,8 +235,6 @@
dest: /usr/lib/x86_64-linux-gnu/libdvdcss.so.2.2.0 dest: /usr/lib/x86_64-linux-gnu/libdvdcss.so.2.2.0
mode: '0644' mode: '0644'
use_proxy: false use_proxy: false
register: download_dvdcss_result
ignore_errors: true
when: mirror_dvdcss is defined and mirror_dvdcss | length > 0 when: mirror_dvdcss is defined and mirror_dvdcss | length > 0
- name: Link library so name - name: Link library so name
@ -245,7 +242,7 @@
src: libdvdcss.so.2.2.0 src: libdvdcss.so.2.2.0
dest: /usr/lib/x86_64-linux-gnu/libdvdcss.so.2 dest: /usr/lib/x86_64-linux-gnu/libdvdcss.so.2
state: link state: link
when: mirror_dvdcss is defined and mirror_dvdcss | length > 0 and download_dvdcss_result.changed when: mirror_dvdcss is defined and mirror_dvdcss | length > 0
- name: Patch sddm login screen to show hostname - name: Patch sddm login screen to show hostname
ansible.builtin.blockinfile: ansible.builtin.blockinfile:

View file

@ -45,7 +45,7 @@
mode: '0700' mode: '0700'
content: | content: |
{% for user, programs in sudo_permissions.items() %} {% for user, programs in sudo_permissions.items() %}
{{ user }} ALL=(root) {% for program in programs %}{{ program }}{% if not loop.last %}, {% endif %}{% endfor %} {{ user }} ALL=(root) NOPASSWD: {% for program in programs %}{{ program }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endfor %} {% endfor %}
when: sudo_permissions is defined when: sudo_permissions is defined