|
|
|
|
@ -119,8 +119,15 @@
|
|
|
|
|
tags:
|
|
|
|
|
- install
|
|
|
|
|
|
|
|
|
|
- name: 'Ensures </etc/bash_completion.d> directory exists'
|
|
|
|
|
file:
|
|
|
|
|
state: directory
|
|
|
|
|
path: '/etc/bash_completion.d'
|
|
|
|
|
tags:
|
|
|
|
|
- install
|
|
|
|
|
|
|
|
|
|
- name: "Download docker bash completion"
|
|
|
|
|
get_url:
|
|
|
|
|
ansible.builtin.get_url:
|
|
|
|
|
url: https://raw.githubusercontent.com/docker/cli/v20.10.6/contrib/completion/bash/docker
|
|
|
|
|
dest: /etc/bash_completion.d/docker
|
|
|
|
|
mode: '644'
|
|
|
|
|
@ -129,7 +136,7 @@
|
|
|
|
|
- install
|
|
|
|
|
|
|
|
|
|
- name: "Download docker-compose bash completion"
|
|
|
|
|
get_url:
|
|
|
|
|
ansible.builtin.get_url:
|
|
|
|
|
url: "https://raw.githubusercontent.com/docker/compose/{{ docker_compose_version }}/contrib/completion/bash/docker-compose"
|
|
|
|
|
dest: "/etc/bash_completion.d/docker-compose"
|
|
|
|
|
mode: '644'
|
|
|
|
|
|