Skip to content

Commit

Permalink
Merge pull request #146 from tibeer/fix_missing_apt_transport_https
Browse files Browse the repository at this point in the history
Docker installation requires apt-transport-https to work properly on Debian based systems
  • Loading branch information
loicalbertin authored Aug 6, 2021
2 parents c2a6f15 + 4e33ef8 commit 060232c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### BUG FIXES

* Docker installation requires apt-transport-https to work properly on Debian based systems ([GH-147](https://github.com/ystia/forge/issues/147))
* [Yorc] Error in AWS location configuration ([GH-145](https://github.com/ystia/forge/issues/145)) | Thanks to [@tibeer](https://github.com/tibeer) for this contribution

## 3.0.0-milestone.1 (April 25, 2021)
Expand Down
5 changes: 3 additions & 2 deletions org/ystia/docker/ansible/playbooks/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
gpgcheck: yes
when: ansible_os_family == 'RedHat'

- name: Ensure the APT package cache is updated
- name: Ensure apt-transport-https and that the APT package cache is updated
apt:
update_cache: yes
name: apt-transport-https
cache_valid_time: 0
when: ansible_os_family == 'Debian'

Expand All @@ -54,4 +55,4 @@
- name: Enable docker service
service:
name: docker
enabled: yes
enabled: yes

0 comments on commit 060232c

Please sign in to comment.