em
/
gjk-ansible-fedora
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

56 lines
1.1 KiB
YAML

2 years ago
- name: GJK Fedora software setup
hosts: all
user: administrator
become: true
tasks:
- name: Install applications
dnf:
name:
- audacity
- code
- freecad
- gcc-c++
- valgrind
- gimp
- htop
- inkscape
- kdenlive
- shotcut
- kicad
- krita
- mypaint
- prusa-slicer
- python3-idle
- texstudio
- screen
- tmux
- vim
# Multimedia codecs
- ffmpeg-libs
# Domain join requirements
- sssd
- oddjob
- oddjob-mkhomedir
- adcli
- samba-common-tools
# Games
#- openarena
state: present
- name: Remove unused applications
dnf:
name:
- openarena
state: absent
- name: Dependency cleanup
dnf:
autoremove: yes
- name: Install required apps from flatpak
community.general.flatpak:
name:
- cc.arduino.arduinoide
state: present