소스 검색

Don't install docker-ce if docker.io is installed

pull/310/head
Dan Arnfield 6 년 전
부모
커밋
b975363530
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


불러오는 중...
취소
저장