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.

8 lines
294 B

  1. ---
  2. - name: Install Docker plugin
  3. command: docker plugin install --grant-all-permissions {{ docker_plugin | quote }}
  4. when: docker_plugin is defined
  5. register: docker_plugin_status
  6. failed_when:
  7. - docker_plugin_status.failed
  8. - '"already exists" not in docker_plugin_status.stderr'