Skip to content

Commit

Permalink
add filename option to apt repository add
Browse files Browse the repository at this point in the history
  • Loading branch information
kaysond committed Feb 22, 2023
1 parent 11345ab commit 8d17dad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ The main Docker repo URL, common between Debian and RHEL systems.
docker_apt_repository: "deb [arch={{ docker_apt_arch }}] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
docker_apt_ignore_key_error: True
docker_apt_gpg_key: "{{ docker_repo_url }}/{{ ansible_distribution | lower }}/gpg"
docker_apt_filename: omit

(Used only for Debian/Ubuntu.) You can switch the channel to `nightly` if you want to use the Nightly release.

Expand Down
1 change: 1 addition & 0 deletions tasks/setup-Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@
apt_repository:
repo: "{{ docker_apt_repository }}"
state: present
filename: "{{ docker_apt_filename | default(omit) }}"
update_cache: true

0 comments on commit 8d17dad

Please sign in to comment.