From 44ccab8f9b23c086fa63c7ef3cc96bc79bcaa5f8 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Sun, 2 Aug 2026 23:35:17 -0500 Subject: [PATCH] Git needs the directory root owned, not apache owned... Bad ansible-lint repair suggestion --- roles/ensure_apache/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ensure_apache/tasks/main.yml b/roles/ensure_apache/tasks/main.yml index 72ac016..4bc1a23 100644 --- a/roles/ensure_apache/tasks/main.yml +++ b/roles/ensure_apache/tasks/main.yml @@ -172,8 +172,8 @@ ansible.builtin.file: path: '/srv/http/{{ item.fqdn }}' state: 'directory' - owner: 'apache' - group: 'apache' + owner: 'root' + group: 'root' mode: '0755' setype: 'httpd_sys_content_t' loop: '{{ http_vhost }}'