Added gnome-software remove
This commit is contained in:
parent
b147fbf77e
commit
c32829811e
2 changed files with 17 additions and 6 deletions
|
|
@ -3,6 +3,11 @@
|
||||||
|
|
||||||
- name: "Remove and install rpm-ostree software"
|
- name: "Remove and install rpm-ostree software"
|
||||||
block:
|
block:
|
||||||
|
- name: "Remove preinstalled rpm-ostree packages"
|
||||||
|
community.general.rpm_ostree_pkg:
|
||||||
|
name: "{{ silverblue_rem_packages }}"
|
||||||
|
state: absent
|
||||||
|
|
||||||
- name: "Upgrade the rpm-ostree image without options, accept all defaults"
|
- name: "Upgrade the rpm-ostree image without options, accept all defaults"
|
||||||
ansible.posix.rpm_ostree_upgrade:
|
ansible.posix.rpm_ostree_upgrade:
|
||||||
|
|
||||||
|
|
@ -19,17 +24,18 @@
|
||||||
line: >-
|
line: >-
|
||||||
[ERR] Error while removing, updating or installing software.
|
[ERR] Error while removing, updating or installing software.
|
||||||
|
|
||||||
- name: "Remove, update and install Flathub software"
|
- name: "Remove and install Flathub software"
|
||||||
block:
|
block:
|
||||||
- name: "Remove preinstalled Flatpaks"
|
- name: "Remove preinstalled Flatpaks"
|
||||||
community.general.flatpak:
|
community.general.flatpak:
|
||||||
name: "{{ silverblue_rem_flatpaks }}"
|
name: "{{ silverblue_rem_flatpaks }}"
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: "Update existing flatpaks"
|
- name: "Add the flathub flatpak repository remote"
|
||||||
community.general.flatpak:
|
community.general.flatpak_remote:
|
||||||
name: "*"
|
name: flathub
|
||||||
state: latest
|
state: present
|
||||||
|
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||||
|
|
||||||
- name: "Install Flatpaks"
|
- name: "Install Flatpaks"
|
||||||
community.general.flatpak:
|
community.general.flatpak:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
#SPDX-License-Identifier: MIT-0
|
|
||||||
---
|
---
|
||||||
# vars file for fedoraSilverblue
|
# vars file for fedoraSilverblue
|
||||||
|
|
||||||
silverblue_rem_packages:
|
silverblue_rem_packages:
|
||||||
|
- gnome-software-rpm-ostree
|
||||||
|
- gnome-software
|
||||||
|
|
||||||
silverblue_packages:
|
silverblue_packages:
|
||||||
- python-psutil
|
- python-psutil
|
||||||
|
|
@ -40,4 +41,8 @@ silverblue_flatpaks:
|
||||||
- com.github.tchx84.Flatseal
|
- com.github.tchx84.Flatseal
|
||||||
- dev.heppen.webapps
|
- dev.heppen.webapps
|
||||||
- com.protonvpn.www
|
- com.protonvpn.www
|
||||||
|
- org.gnome.Papers
|
||||||
|
- com.mattjakeman.ExtensionManager
|
||||||
|
|
||||||
|
silverblue_brew:
|
||||||
|
- dua-cli
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue