OceanBby
OceanBby
BBlueBuild
Created by OceanBby on 1/20/2025 in #questions
ublue-update failed with result 'exit-code'
Found this issue https://github.com/ublue-os/ublue-update/issues/113 and some discussion in channels. But the issue is still existed for me. I use Bazzite as the base image, and ujust update works perfectly fine. Anyone else have the same issue? Also saw devs said they might replace it with this in the future: https://github.com/ublue-os/uupd
ublue-update[47861]: ublue_update.update_checks.system:INFO | System update available.
ublue-update[47861]: ublue_update.update_inhibitors.hardware:INFO | System passed hardware checks
ublue-update[47861]: ublue_update.update_inhibitors.custom:INFO | System passed custom checks
ublue-update[47861]: ublue_update.cli:INFO | System passed all update checks
systemd[1]: ublue-update.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: ublue-update.service: Failed with result 'exit-code'.
systemd[1]: Failed to start ublue-update.service - Universal Blue Update Oneshot Service.
ublue-update[47861]: ublue_update.update_checks.system:INFO | System update available.
ublue-update[47861]: ublue_update.update_inhibitors.hardware:INFO | System passed hardware checks
ublue-update[47861]: ublue_update.update_inhibitors.custom:INFO | System passed custom checks
ublue-update[47861]: ublue_update.cli:INFO | System passed all update checks
systemd[1]: ublue-update.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: ublue-update.service: Failed with result 'exit-code'.
systemd[1]: Failed to start ublue-update.service - Universal Blue Update Oneshot Service.
6 replies
BBlueBuild
Created by OceanBby on 1/17/2025 in #questions
Is it posstible to install local flatpak?
There's a flatpak not on flathub, so I wrote a script try to do that manually, but it didn't show up in the system. Is this the right way to do it?
#!/usr/bin/env bash

set -oue pipefail

mkdir /tmp/some_flatpak
cd /tmp/some_flatpak

wget "$(curl -s https://api.github.com/repos/some_flatpak_repo/releases/latest | grep -oP '"browser_download_url": "\K[^"]+' | grep 'Linux.flatpak')"

flatpak install -y --bundle ./*.flatpak
#!/usr/bin/env bash

set -oue pipefail

mkdir /tmp/some_flatpak
cd /tmp/some_flatpak

wget "$(curl -s https://api.github.com/repos/some_flatpak_repo/releases/latest | grep -oP '"browser_download_url": "\K[^"]+' | grep 'Linux.flatpak')"

flatpak install -y --bundle ./*.flatpak
9 replies