Open fititnt opened 4 years ago
As commented here https://github.com/fititnt/ap-application-load-balancer/issues/29#issuecomment-565811116 after a re-run of AP-ALB on a host that had ben configured with githubixx/ansible-role-wireguard, at this moment the AP-ALB may fail.
## host: root@ap-foxtrot-debian10:~#
# This works, even with githubixx/ansible-role-wireguard
apt install haproxy
# This also still works
apt install haproxy -t buster-backports-2.0
# This does not works (but without githubixx/ansible-role-wireguard was working)
apt install haproxy=2.0.\*
apt install haproxy=2.0.\* -t buster-backports-2.0
## root@ap-foxtrot-debian10:~# apt install haproxy=2.0.\* -t buster-backports-2.0
## Reading package lists... Done
## Building dependency tree
## Reading state information... Done
## Selected version '2.0.11-1' (Debian:unstable [amd64]) for 'haproxy'
## Some packages could not be installed. This may mean that you have
## requested an impossible situation or if you are using the unstable
## distribution that some required packages have not yet been created
## or been moved out of Incoming.
## The following information may help to resolve the situation:
##
## The following packages have unmet dependencies:
## haproxy : Depends: libcrypt1 (>= 1:4.1.0) but it is not going to be installed
## E: Unable to correct problems, you have held broken packages.
Edit 1
Using the more specific 2.0.*~bpo10+1
seems for enforce our version, even if a user uses debian testing mixed with debian stable.
apt install haproxy=2.0.*~bpo10+1 -t buster-backports-2.0
## root@ap-foxtrot-debian10:~# apt install haproxy=2.0.*~bpo10+1 -t buster-backports-2.0
## Reading package lists... Done
## Building dependency tree
## Reading state information... Done
## haproxy is already the newest version (2.0.11-1~bpo10+1).
## Selected version '2.0.11-1~bpo10+1' (HAProxy 2.0:buster-backports-2.0 [amd64]) ## for 'haproxy'
## 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
This issue contain quick references about ALB on very specific Debian distribution. This does not include operational systems based on the Debian OS Family (like Ubuntu).
DontBreakDebian
About APT and repositories
Edit: added references about apt configuration