From 918828ca1557ce2c73de92c8ff4c7087b464dc54 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Fri, 22 May 2020 15:29:48 -0600 Subject: [PATCH] nagios: correct path for copying phx2 nagios svcs The nagios playbook is failing because it can't find a bunch of service files. The playbook refers to a path of 'nagios/services/phx2/' but the path that exists in git is 'nagios/services/phx2_internal'. This fixes the path reference so that the playbook should complete. --- roles/nagios_server/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/nagios_server/tasks/main.yml b/roles/nagios_server/tasks/main.yml index 5caf233d41..f3017b3059 100644 --- a/roles/nagios_server/tasks/main.yml +++ b/roles/nagios_server/tasks/main.yml @@ -174,7 +174,7 @@ ## Copy over the services - name: Copy /etc/nagios/services (PHX2 specific files) - copy: src=nagios/services/phx2/{{ item }} dest=/etc/nagios/services/{{ item }} + copy: src=nagios/services/phx2_internal/{{ item }} dest=/etc/nagios/services/{{ item }} with_items: - basset.cfg - certgetter.cfg -- 2.50.0