More Packages
This commit is contained in:
parent
2a030b639b
commit
600fe4db82
2 changed files with 34 additions and 27 deletions
|
|
@ -5,17 +5,13 @@
|
|||
ansible.builtin.rpm_key:
|
||||
key: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- "https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-fedora-2020"
|
||||
- "https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
|
||||
with_items: "{{ rpmfusion_keys }}"
|
||||
|
||||
- name: install the rpmfusion repo packages
|
||||
dnf:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_distribution_major_version }}.noarch.rpm
|
||||
- http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_distribution_major_version }}.noarch.rpm
|
||||
with_items: "{{ rpmfusion_repos }}"
|
||||
|
||||
|
||||
- name: Remove unnecassary packages
|
||||
|
|
|
|||
|
|
@ -1,6 +1,14 @@
|
|||
---
|
||||
# vars file for fedora
|
||||
|
||||
rpmfusion_keys:
|
||||
- "https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-fedora-2020"
|
||||
- "https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020"
|
||||
|
||||
rpmfusion_repos:
|
||||
- http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_distribution_major_version }}.noarch.rpm
|
||||
- http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_distribution_major_version }}.noarch.rpm
|
||||
|
||||
rem_packages:
|
||||
- gnome-tour
|
||||
- mediawriter
|
||||
|
|
@ -19,6 +27,7 @@ packages:
|
|||
- kitty
|
||||
- flatpak
|
||||
- ptyxis
|
||||
- exa
|
||||
|
||||
flatpaks:
|
||||
- com.vscodium.codium
|
||||
|
|
@ -41,5 +50,7 @@ flatpaks:
|
|||
- org.gnome.Evolution
|
||||
- dev.qwery.AddWater
|
||||
- dev.deedles.Trayscale
|
||||
|
||||
- com.mattjakeman.ExtensionManager
|
||||
- com.github.tchx84.Flatseal
|
||||
- dev.heppen.webapps
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue