local-repositories-fedora #17

Merged
mfocko merged 2 commits from local-repositories-fedora into main 2020-10-14 20:30:27 +02:00
2 changed files with 22 additions and 1 deletions
Showing only changes of commit 66aa6fbdbf - Show all commits

View file

@ -2,7 +2,7 @@
- name: Fedora bootstrap
hosts: all
roles:
- role: fedora_packages
- role: fedora/packages
become: yes
become_method: sudo
- flatpaks

View file

@ -0,0 +1,21 @@
---
- name: Upgrade all packages
dnf:
name: '*'
state: latest
- name: Install playerctl and flameshot
dnf:
name:
- playerctl
- flameshot
state: present
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present