WIP: Fix debian 10+ php 5.6 container creation #168

Draft
pmarchand wants to merge 1 commits from fix_lxc_php56_debian10 into unstable
2 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Fixed
* evolinux-base: ensure dbus is started and enabled (not by default in the case of an offline netinst)
* lxc: fix problems during php 5.6 containers creation on debian 10+ by downgrading the jessie keyring
### Removed

View File

@ -5,6 +5,13 @@
check_mode: no
register: container_exists
- name: "Downgrade debian key-ring (Jessie container)"
apt:
deb: https://snapshot.debian.org/archive/debian/20190423T161317Z/pool/main/d/debian-archive-keyring/debian-archive-keyring_2019.1_all.deb
when:
- release == 'jessie'
- ansible_distribution_major_version is version('10', '>=')
- name: "Create container {{ name }}"
lxc_container:
name: "{{ name }}"