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
289 B

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