Skip to content

Install GNOME Software

An XCCDF Rule

Description

The gnome-software package can be installed with the following command:
$ sudo dnf install gnome-software

Rationale

The GNOME software package must be installed so that it can be used for software and firmware updates.

ID
xccdf_org.ssgproject.content_rule_package_gnome_software_installed
Severity
Medium
Updated

Remediation Templates

A Puppet Snippet

include install_gnome-software
class install_gnome-software {
  package { 'gnome-software':
    ensure => 'installed',
  }
}

An Ansible Snippet

- name: Ensure gnome-software is installed
  package:
    name: gnome-software
    state: present
  tags:
  - enable_strategy

script:kickstart

package install gnome-software

OS Build Blueprint

[[packages]]
name = "gnome-software"
version = "*"

script:bootc

dnf install gnome-software

Anaconda Pre-Install Instructions

package --add=gnome-software

A Shell Script

if ! rpm -q --quiet "gnome-software" ; then
    dnf install -y "gnome-software"
fi