From 2ab59865aca9323149e82805f9c9ad61ffd0fa94 Mon Sep 17 00:00:00 2001 From: josephrajewski Date: Tue, 27 Jul 2021 15:13:26 -0400 Subject: [PATCH] Add -y to tdnf package installation on Photon. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 9806cec..c194634 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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"