Add -y to tdnf package installation on Photon.

This commit is contained in:
josephrajewski 2021-07-27 15:13:26 -04:00
parent 77e542ed93
commit 2ab59865ac

View File

@ -14,7 +14,7 @@
when: not ansible_facts['os_family'] == "VMware Photon OS"
- name: Install Docker on Photon OS.
command: "tdnf install {{ item }}"
command: "tdnf install -y {{ item }}"
with_items: "{{ docker_package_photon }}"
tags: installation
when: ansible_facts['os_family'] == "VMware Photon OS"