c59e32469f
* Add new Fedora docker images with Python 3. * Use consistent env var for lookup test. * Fix testing of virtualenv with Python 3. * Fix docker_secret tests on Fedora 26. * Add Python 3 support to Fedora postgresql test. * Add Python 3 support to Fedora mysql tests. * Fix uri test server for Python 3 on Fedora. * Fix iso_extract test for Python 3 on Fedora. * Add Python 3 support for Fedora to openssl tests. * Fix dnf group test for Python 3 on Fedora. * Use force with user deletion in become test.
18 lines
383 B
YAML
18 lines
383 B
YAML
- name: Install Docker pre-reqs
|
|
dnf:
|
|
name: "{{ item }}"
|
|
state: present
|
|
items:
|
|
- dnf-plugins-core
|
|
|
|
- name: Add repository
|
|
command: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
|
|
|
|
- name: Update cache
|
|
command: dnf makecache
|
|
|
|
- name: Install docker
|
|
dnf:
|
|
name: docker-ce
|
|
state: present
|
|
enablerepo: docker-ce-test
|