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 504 B
Newer Older
  • Learn to ignore specific revisions
  • ---
    
    - name: FONT | JetBrainsMono presence
      when: inventory_hostname in groups.station
      ansible.builtin.find:
        path: "/usr/local/share/fonts/"
        patterns: "JetBrainsMono*"
    
        recurse: true
    
      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: true
    
        src: https://download.jetbrains.com/fonts/JetBrainsMono-2.242.zip