From 8a852177dbfc44bb7fc2568125354b248a8abc56 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Fri, 22 May 2020 18:07:30 -0600 Subject: [PATCH] nagios: make referenced filenames match filesystem The filename for a template didn't match the file that's in git. Fixed the filename in the playbook since the naming convention for the files seemed consistent. --- 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 85496b69d9..a24650f1f7 100644 --- a/roles/nagios_server/tasks/main.yml +++ b/roles/nagios_server/tasks/main.yml @@ -436,7 +436,7 @@ - name: Build out nagios services templates template: src=nagios/services/{{item}}.j2 dest=/etc/nagios/services/{{item}} mode=0644 owner=root group=root with_items: - - mgmt-http.cfg + - phx2-mgmt.cfg.j2 when: nagios_location == 'phx2_internal' tags: - nagios_server