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 - Anaconda Pre-Install Instructions
package --add=gnome-software
Remediation - OS Build Blueprint
[[packages]]
name = "gnome-software"
version = "*"
Remediation - Ansible
- name: Ensure gnome-software is installed
package:
name: gnome-software
state: present
tags:
- enable_strategy
Remediation - Puppet
include install_gnome-software
class install_gnome-software {
package { 'gnome-software':
ensure => 'installed',
}
Remediation - Shell Script
if ! rpm -q --quiet "gnome-software" ; then
dnf install -y "gnome-software"
fi