Hi all again.
I’ve a Debian server with installed Foundation DB 7 .
According to FDB architecture, you need to install two packages on server:
- foundationdb-clients-7.3.63
- foundationdb-server-7.3.63
I did fresh install with this code, using locally downloaded packages:
................................
- name: Install by APT | Package installation (version {{ package_version }})
ansible.builtin.apt:
deb: "{{ ansible_user_dir }}/{{ item.path | basename }}"
state: present
install_recommends: true
with_items: "{{ deb_names.files | sort(attribute='path') }}"
become: true
And it works fine.
But when I try to update these packages with locally downloaded files from 7.3.63 → 7.3.69 with the same code on this Debian server I got an error:
fdb.server:
item={'path': 'files/foundationdb-clients_7.3.69-1_amd64.deb'}
"msg": "Breaks existing package 'foundationdb-server' dependency foundationdb-clients (= 7.3.63-1)"
item={'path': 'files/foundationdb-server_7.3.69-1_amd64.deb'}:
"msg": "Dependency is not satisfiable: foundationdb-clients (= 7.3.69-1)"
When I did it on RedHat server - there is no problem with option " skip_broken: true".
Could you, please, help to solve this?