azure/build.sh

42 lines
1.7 KiB
Bash
Raw Normal View History

2024-05-03 07:56:30 +00:00
#!/bin/bash
set -ouex pipefail
RELEASE="$(rpm -E %fedora)"
2024-05-03 15:11:18 +00:00
### Add repos
2024-05-03 07:56:30 +00:00
2024-05-03 15:11:18 +00:00
# Add Staging repo
curl -Lo /etc/yum.repos.d/ublue-os-staging-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ublue-os/staging/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ublue-os-staging-fedora-"${FEDORA_MAJOR_VERSION}".repo
# Add Bling repo
curl -Lo /etc/yum.repos.d/ublue-os-bling-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ublue-os/bling/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ublue-os-bling-fedora-"${FEDORA_MAJOR_VERSION}".repo
curl -Lo /etc/yum.repos.d/ganto-lxc4-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ganto/lxc4/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ganto-lxc4-fedora-"${FEDORA_MAJOR_VERSION}".repo
2024-05-03 07:56:30 +00:00
2024-05-03 15:11:18 +00:00
curl -Lo /etc/yum.repos.d/_copr_che-nerd-fonts-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/che/nerd-fonts/repo/fedora-"${FEDORA_MAJOR_VERSION}"/che-nerd-fonts-fedora-"${FEDORA_MAJOR_VERSION}".repo
2024-05-06 19:14:40 +00:00
curl -Lo /etc/yum.repos.d/_copr_babariviere-tools-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/babariviere/tools/repo/fedora-"${FEDORA_MAJOR_VERSION}"/babariviere-tools-fedora-"${FEDORA_MAJOR_VERSION}".repo
2024-05-03 15:11:18 +00:00
### Install packages
2024-05-03 07:56:30 +00:00
2024-05-03 15:11:18 +00:00
grep -v '^#' /tmp/packages | xargs rpm-ostree install
2024-05-03 07:56:30 +00:00
2024-05-03 18:49:19 +00:00
rpm-ostree override remove opensc
2024-05-05 15:23:33 +00:00
# Installed via flatpak
rpm-ostree override remove firefox firefox-langpacks
2024-05-05 10:27:56 +00:00
### Setup flatpaks
mkdir -p /etc/azure/flatpaks
cp /tmp/build/flatpak-setup /usr/bin/flatpak-setup
cp /tmp/build/flatpak-setup.service /usr/lib/systemd/user/flatpak-setup.service
2024-05-03 15:11:18 +00:00
#### Services
2024-05-03 07:56:30 +00:00
2024-05-14 09:26:52 +00:00
systemctl enable docker.socket
2024-05-03 07:56:30 +00:00
systemctl enable podman.socket
2024-05-03 15:11:18 +00:00
systemctl enable tailscaled.service
2024-05-05 10:27:56 +00:00
systemctl enable -f --global flatpak-setup.service