docker install being skipped
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
docker (Juju Charms Collection) |
New
|
Undecided
|
Unassigned |
Bug Description
When trying install docker, it seems to be skipped both latest and universe. It seems that the conditions on playbooks/
- name: check for docker.io
shell: "dpkg -l docker.io | grep docker.io | cut -d' ' -f1"
register: universe_check
# Updated due to bug #24
- name: check for latest-docker
shell: "dpkg -l docker-engine | grep docker-engine | cut -d' ' -f1"
register: latest_check
are both going false since docker is not installed but when it goes to playbooks/
- name: enforce latest docker
when: latest == true and latest_installed == "False"
include: latest-docker.yaml
- name: enforce universe docker
when: latest == false and universe_installed == "False"
include: universe-
both are skipped, even though docker is not installed