bluedev/build.sh
Noel Miller b1e074e911
fix: use a working example (#13)
Fedora 40 broke the example for editing systemd configuration behavior.
Decided to use a simpler example.
2024-04-23 13:52:34 -05:00

23 lines
613 B
Bash
Executable file

#!/bin/bash
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
#RUN rpm-ostree install vlc
#### Example for enabling a System Unit File
systemctl enable podman.socket