Преглед изворни кода

Merge pull request #310 from thedanbob/docker.io

Don't install docker-ce if docker.io is installed
pull/311/head
Slavi Pantaleev пре 6 година
committed by GitHub
родитељ
комит
a297e617ca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 14 додато и 3 уклоњено
  1. +14
    -3
      roles/matrix-base/tasks/setup_server_base.yml

+ 14
- 3
roles/matrix-base/tasks/setup_server_base.yml Прегледај датотеку

@@ -38,6 +38,10 @@
update_cache: yes
when: ansible_os_family == 'Debian'

- name: Gather package facts (Debian)
package_facts:
when: ansible_os_family == 'Debian'

- name: Ensure Docker's APT key is trusted (Debian)
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
@@ -45,20 +49,19 @@
state: present
register: add_repository_key
ignore_errors: true
when: ansible_os_family == 'Debian'
when: ansible_os_family == 'Debian' and 'docker.io' not in ansible_facts.packages

- name: Ensure Docker repository is enabled (Debian)
apt_repository:
repo: "deb [arch=amd64] https://download.docker.com/linux/{{ ansible_distribution|lower }} {{ ansible_distribution_release }} stable"
state: present
update_cache: yes
when: ansible_os_family == 'Debian'
when: ansible_os_family == 'Debian' and 'docker.io' not in ansible_facts.packages

- name: Ensure APT packages are installed (Debian)
apt:
name:
- bash-completion
- docker-ce
- python-docker
- ntp
- fuse
@@ -66,6 +69,14 @@
update_cache: yes
when: ansible_os_family == 'Debian'

- name: Ensure docker-ce is installed (Debian)
apt:
name:
- docker-ce
state: latest
update_cache: yes
when: "'docker.io' not in ansible_facts.packages"

- name: Ensure Docker is started and autoruns
service:
name: docker


Loading…
Откажи
Сачувај