2024-04-23 18:52:34 +00:00
|
|
|
#!/bin/bash
|
2024-04-15 05:27:36 +00:00
|
|
|
|
|
|
|
set -ouex pipefail
|
|
|
|
|
|
|
|
RELEASE="$(rpm -E %fedora)"
|
|
|
|
|
|
|
|
|
|
|
|
### Install packages
|
|
|
|
|
|
|
|
# Packages can be installed from any enabled yum repo on the image.
|
|
|
|
# RPMfusion repos are available by default in ublue main images
|
|
|
|
# List of rpmfusion packages can be found here:
|
|
|
|
# https://mirrors.rpmfusion.org/mirrorlist?path=free/fedora/updates/39/x86_64/repoview/index.html&protocol=https&redirect=1
|
|
|
|
|
|
|
|
# this installs a package from fedora repos
|
|
|
|
rpm-ostree install screen
|
|
|
|
|
|
|
|
# this would install a package from rpmfusion
|
2024-04-23 18:56:28 +00:00
|
|
|
# rpm-ostree install vlc
|
2024-04-15 05:27:36 +00:00
|
|
|
|
2024-04-23 18:52:34 +00:00
|
|
|
#### Example for enabling a System Unit File
|
2024-04-15 05:27:36 +00:00
|
|
|
|
2024-04-23 18:52:34 +00:00
|
|
|
systemctl enable podman.socket
|