You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Installting develop version I noticed the apt-key deprecation and decided to reinstall via PackageCloud.
I encountered two issues when trying to follow instructions.
Add the apt repository to the apt sources list: section declares explicitly only amd64 architecture. This precludes any ARM machines including raspberry pis. I'm assuming this isn't intentional as installing using the non-PackageCloud method worked generally smoothly. For me removing the arch=amd64 seemed to work. (You can obviously also explicitly declare all architectures you'd like to support)
The command sudo curl -sSL https://packagecloud.io/Ombi-app/Ombi-Dev/gpgkey | gpg --dearmor > /usr/share/keyrings/ombi-archive-keyring.gpg encounters permission issues when trying to write to /usr/share/keyrings/ombi-archive-keyring.gpg. Using sudo tee instead of a redirect worked for me:
Summary
https://docs.ombi.app/guides/installation/#debian-apt-repo
When Installting develop version I noticed the apt-key deprecation and decided to reinstall via PackageCloud.
I encountered two issues when trying to follow instructions.
Add the apt repository to the apt sources list:
section declares explicitly onlyamd64
architecture. This precludes any ARM machines including raspberry pis. I'm assuming this isn't intentional as installing using the non-PackageCloud method worked generally smoothly. For me removing thearch=amd64
seemed to work. (You can obviously also explicitly declare all architectures you'd like to support)The command
sudo curl -sSL https://packagecloud.io/Ombi-app/Ombi-Dev/gpgkey | gpg --dearmor > /usr/share/keyrings/ombi-archive-keyring.gpg
encounters permission issues when trying to write to/usr/share/keyrings/ombi-archive-keyring.gpg
. Usingsudo tee
instead of a redirect worked for me:sudo curl -sSL https://packagecloud.io/Ombi-app/Ombi-Dev/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/ombi-archive-keyring.gpg > /dev/null
Ombi Version
4.20.1
What platform(s) does this occur on?
Linux
What database are you using?
SQLite (Default)
Relevant log output
No response
The text was updated successfully, but these errors were encountered: