You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
306 B

  1. ---
  2. - name: Get nerdctl completion
  3. command: "{{ bin_dir }}/nerdctl completion bash"
  4. changed_when: False
  5. register: nerdctl_completion
  6. check_mode: false
  7. - name: Install nerdctl completion
  8. copy:
  9. dest: /etc/bash_completion.d/nerdctl
  10. content: "{{ nerdctl_completion.stdout }}"
  11. mode: 0644