Просмотр исходного кода

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
Родитель
Сommit
a297e617ca
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 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


Загрузка…
Отмена
Сохранить