45 lines
1.3 KiB
Bash
Executable file
45 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|
|
|
|
# from fedora repos
|
|
# NOTE: for now freeipa-client must be layered AFTER installation to work
|
|
rpm-ostree install \
|
|
usbguard \
|
|
zsh \
|
|
libvirt \
|
|
virt-manager \
|
|
autofs \
|
|
gstreamer1-plugins-ugly-free \
|
|
gstreamer1-plugins-bad-free \
|
|
gstreamer1-plugins-bad-free-extras \
|
|
gstreamer1-plugins-good \
|
|
gstreamer1-plugins-good-extras \
|
|
gstreamer1-plugins-base \
|
|
gstreamer1-plugins-base-tools \
|
|
wireguard-tools \
|
|
trash-cli \
|
|
git \
|
|
git-credential-libsecret
|
|
|
|
|
|
# from rpmfusion
|
|
rpm-ostree install vlc
|
|
|
|
|
|
|
|
#### Change to System Configuration Files
|
|
|
|
# this example modifies default timeouts to prevent slow reboots from services that won't stop
|
|
#sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/user.conf
|
|
#sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/system.conf
|