From 63e783e7f64ea2b9820c6cd00ec3cd4fe9dd6c8a Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Fri, 19 Apr 2024 13:29:28 -0400 Subject: [PATCH] Set file perms --- playbooks/investigate_high_cpu.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/investigate_high_cpu.yml b/playbooks/investigate_high_cpu.yml index 9a6c1f4..7e01bf1 100644 --- a/playbooks/investigate_high_cpu.yml +++ b/playbooks/investigate_high_cpu.yml @@ -18,8 +18,9 @@ - name: Open Incident hosts: all tasks: - - name: Create Problem Template + - name: Create Problem Template # noqa: no-relative-paths ansible.builtin.template: + mode: '0644' src: '../templates/cpuhog_ticket.j2' dest: /tmp/cpuhog_details.txt delegate_to: localhost