From ecd9d2e69701bd6d9a7b3ef4e005dbad496be66a Mon Sep 17 00:00:00 2001 From: XaTTa6bl4 Date: Sat, 23 Apr 2022 15:53:24 +0300 Subject: [PATCH] tasks/setup-Ubuntu.yml: change fixed apt package name to var nginx_package_name --- tasks/setup-Ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setup-Ubuntu.yml b/tasks/setup-Ubuntu.yml index c608d25..bd82b99 100644 --- a/tasks/setup-Ubuntu.yml +++ b/tasks/setup-Ubuntu.yml @@ -14,7 +14,7 @@ - name: Ensure nginx will reinstall if the PPA was just added. apt: - name: nginx + name: "{{ nginx_package_name }}" state: absent when: nginx_ppa_added is changed tags: ['skip_ansible_lint']