Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
font.yml 502 B
Newer Older
---

- name: FONT | JetBrainsMono presence
  when: inventory_hostname in groups.station
  ansible.builtin.find:
    path: "/usr/local/share/fonts/"
    patterns: "JetBrainsMono*"
    recurse: yes
  register: font_presence

- name: FONT | install JetBrainsMono font
  when: (inventory_hostname in groups.station) and
        (font_presence.matched < 50)
  ansible.builtin.unarchive:
    dest: "/usr/local/share/"
    remote_src: yes
    src: https://download.jetbrains.com/fonts/JetBrainsMono-2.242.zip