-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KeePassXC: use distro version for bookworm and any unrecognized version
work towards #2401 long term we still need to update keepassxc for buster/bullseye #2160 . Potentially may be able to use near equivalent from the ubuntu PPA for these debian releases
- Loading branch information
1 parent
77f25ec
commit 33bf238
Showing
2 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
#!/bin/bash | ||
|
||
case $(get_codename) in | ||
bionic|focal|jammy|kinetic) | ||
apt_lock_wait | ||
sudo add-apt-repository ppa:phoerious/keepassxc -y | ||
bionic|focal|jammy|kinetic|lunar) | ||
ubuntu_ppa_installer "phoerious/keepassxc" | ||
install_packages keepassxc || exit 1 | ||
;; | ||
bookworm|trixie|sid|mantic) | ||
install_packages keepassxc || exit 1 | ||
;; | ||
bullseye) | ||
install_packages https://github.com/Pi-Apps-Coders/files/raw/main/keepassxc_2.6.6-1_armhf.deb || exit 1 | ||
;; | ||
*) | ||
buster) | ||
install_packages https://github.com/ryanfortner/ryanfortner/releases/download/1002/keepassxc_2.6.6-5_armhf.deb || exit 1 | ||
;; | ||
*) | ||
install_packages keepassxc || exit 1 | ||
;; | ||
esac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
#!/bin/bash | ||
|
||
case $(get_codename) in | ||
bionic|focal|jammy|kinetic) | ||
apt_lock_wait | ||
sudo add-apt-repository ppa:phoerious/keepassxc -y | ||
bionic|focal|jammy|kinetic|lunar) | ||
ubuntu_ppa_installer "phoerious/keepassxc" | ||
install_packages keepassxc || exit 1 | ||
;; | ||
bookworm|trixie|sid|mantic) | ||
install_packages keepassxc || exit 1 | ||
;; | ||
bullseye) | ||
install_packages https://github.com/Pi-Apps-Coders/files/raw/main/keepassxc_2.6.6-1_arm64.deb || exit 1 | ||
;; | ||
*) | ||
buster) | ||
install_packages https://github.com/ryanfortner/ryanfortner/releases/download/1002/keepassxc_2.6.6-5_arm64.deb || exit 1 | ||
;; | ||
*) | ||
install_packages keepassxc || exit 1 | ||
;; | ||
esac |