From 38846aebfe8f04dadf2737f2e2706a7f3241090e Mon Sep 17 00:00:00 2001 From: Greg Szabo Date: Fri, 25 Aug 2017 10:57:15 -0400 Subject: [PATCH] Install rsyslog for CentOS for troubleshooting purposes --- ansible/roles/install/tasks/centos.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/roles/install/tasks/centos.yml b/ansible/roles/install/tasks/centos.yml index 6d5800113..191f57846 100644 --- a/ansible/roles/install/tasks/centos.yml +++ b/ansible/roles/install/tasks/centos.yml @@ -36,3 +36,7 @@ when: ansible_os_family == "RedHat" yum: "pkg={{service}} update_cache=yes state=latest" +- name: Install rsyslog on CentOS/RedHat + when: ansible_os_family == "RedHat" + yum: "pkg=rsyslog state=latest" +