From e8ca37fa7c57e81136869cee4a16020a47d1caeb Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 19 Sep 2019 18:38:13 -0500 Subject: [PATCH] roles/burp-client: Set clientconfdir file owner The BURP server runs as user *burp*, and nas such, requires that the client-specific configuration files be owned by that user so they can be read when a client connects. --- roles/burp-client/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/burp-client/tasks/main.yml b/roles/burp-client/tasks/main.yml index 3dd366f..cff5fc3 100644 --- a/roles/burp-client/tasks/main.yml +++ b/roles/burp-client/tasks/main.yml @@ -23,6 +23,8 @@ template: src=server-clientconf.j2 dest=/etc/burp/clientconfdir/{{ ansible_fqdn }} + owner=burp + group=burp mode=0400 delegate_to: '{{ burp_server }}'