mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-01-21 06:54:28 +01:00
25 lines
699 B
Bash
Executable File
25 lines
699 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
### 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
|
|
dnf5 install -y tmux
|
|
|
|
# Use a COPR Example:
|
|
#
|
|
# dnf5 -y copr enable ublue-os/staging
|
|
# dnf5 -y install package
|
|
# Disable COPRs so they don't end up enabled on the final image:
|
|
# dnf5 -y copr disable ublue-os/staging
|
|
|
|
#### Example for enabling a System Unit File
|
|
|
|
systemctl enable podman.socket
|