mirror of
https://github.com/optim-enterprises-bv/coreos.git
synced 2025-11-02 02:47:53 +00:00
64 lines
1.9 KiB
Bash
Executable File
64 lines
1.9 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ouex pipefail
|
|
|
|
KERNEL="$(rpm -q kernel --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
|
|
RELEASE="$(rpm -E %fedora)"
|
|
|
|
#### PREPARE
|
|
# enable testing repos if not enabled on testing stream
|
|
if [[ "testing" == "${COREOS_VERSION}" ]]; then
|
|
for REPO in $(ls /etc/yum.repos.d/fedora-updates-testing{,-modular}.repo); do
|
|
if [[ "$(grep enabled=1 ${REPO} > /dev/null; echo $?)" == "1" ]]; then
|
|
echo "enabling $REPO" &&
|
|
sed -i '0,/enabled=0/{s/enabled=0/enabled=1/}' ${REPO}
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# add the ucore copr repo
|
|
curl -L https://copr.fedorainfracloud.org/coprs/ublue-os/ucore/repo/fedora/ublue-os-ucore-fedora.repo -o /etc/yum.repos.d/ublue-os-ucore-fedora.repo
|
|
|
|
# always disable cisco-open264 repo
|
|
sed -i 's@enabled=1@enabled=0@g' /etc/yum.repos.d/fedora-cisco-openh264.repo
|
|
|
|
#### INSTALL
|
|
# inspect to see what RPMS we copied in
|
|
find /tmp/rpms/
|
|
|
|
rpm-ostree install /tmp/rpms/ublue-os-ucore-addons-*.rpm
|
|
|
|
## CONDITIONAL: install ZFS (and sanoid deps)
|
|
if [[ "-zfs" == "${ZFS_TAG}" ]]; then
|
|
rpm-ostree install /tmp/rpms/zfs/*.rpm \
|
|
pv
|
|
# for some reason depmod ran automatically with zfs 2.1 but not with 2.2
|
|
depmod -A ${KERNEL}
|
|
fi
|
|
|
|
## CONDITIONAL: install NVIDIA
|
|
if [[ "-nvidia" == "${NVIDIA_TAG}" ]]; then
|
|
# repo for nvidia rpms
|
|
curl -L https://negativo17.org/repos/fedora-nvidia.repo -o /etc/yum.repos.d/fedora-nvidia.repo
|
|
|
|
rpm-ostree install /tmp/rpms/nvidia/ublue-os-ucore-nvidia-*.rpm
|
|
sed -i '0,/enabled=0/{s/enabled=0/enabled=1/}' /etc/yum.repos.d/nvidia-container-toolkit.repo
|
|
|
|
rpm-ostree install \
|
|
/tmp/rpms/nvidia/kmod-nvidia-*.rpm \
|
|
nvidia-driver-cuda \
|
|
nvidia-container-toolkit
|
|
fi
|
|
|
|
## ALWAYS: install regular packages
|
|
|
|
# add tailscale repo
|
|
curl -L https://pkgs.tailscale.com/stable/fedora/tailscale.repo -o /etc/yum.repos.d/tailscale.repo
|
|
|
|
# install packages.json stuffs
|
|
export IMAGE_NAME=ucore-minimal
|
|
/tmp/packages.sh
|
|
|
|
# tweak os-release
|
|
sed -i '/^PRETTY_NAME/s/"$/ (uCore minimal)"/' /usr/lib/os-release
|