Skip to content

Commit

Permalink
fix: Only enable ublue-update on F39 builds (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Oct 6, 2023
1 parent 3db0b57 commit d481a4f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ RUN wget https://copr.fedorainfracloud.org/coprs/ublue-os/bling/repo/fedora-$(rp
systemctl enable rpm-ostree-countme.service && \
systemctl enable tailscaled.service && \
systemctl enable dconf-update.service && \
systemctl enable ublue-update.timer && \
if [ ${FEDORA_MAJOR_VERSION} -gt 38 ]; then \
systemctl enable ublue-update.timer \
; else \
systemctl disable ublue-update.timer \
; fi && \
systemctl enable ublue-system-setup.service && \
systemctl enable ublue-system-flatpak-manager.service && \
systemctl --global enable ublue-user-flatpak-manager.service && \
Expand Down

0 comments on commit d481a4f

Please sign in to comment.