Skip to content
Snippets Groups Projects
Select Git revision
  • a4abf7cf0f8b7f86e9f28815e7fefba163136793
  • master default protected
  • postgres_integration
  • s3compatible
  • intros
  • bootstrap4
  • modules
7 results

importer.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    software.yml 4.40 KiB
    ---
    # file: roles/client/tasks/desktop.yml
    
    - name: Install Intel and Realtek firmware for Dell clients
      apt:
        name:
          - firmware-misc-nonfree
          - firmware-realtek
          - firmware-iwlwifi
        state: present
      when: ansible_system_vendor == "Dell Inc."
    
    - name: ensure office applications are installed
      apt:
        name:
          - libreoffice  # this is a meta-package
          - libreoffice-help-de
          - libreoffice-l10n-de
          - libreoffice-kde5
          - texstudio
        state: present
    
    - name: ensure artistic applications are installed
      apt:
        name:
          - inkscape
          - gimp
          - gimp-texturize
          - scribus
          - scribus-doc
          - scribus-template
          - dia
          - gnuplot
        state: present
    
    - name: ensure pdf applications are installed
      apt:
        name:
          - evince
          - pdfgrep
          - pdfmod
          - pdftk
          - xournal
          - poppler-utils
        state: present
    
    - name: ensure finance applications are installed
      apt:
        name:
          - gnucash
          - kmymoney
        state: present
    
    - name: ensure python packages are installed
      apt:
        name:
          - python3
          - python3-matplotlib
          - python3-pip
          - python3-pyqt5
          - python3-scipy
          - python3-venv
          - python3-virtualenv
          - ipython3
        state: present
    
    - name: ensure haskell packages are installed
      apt:
        name:
          - pandoc