From a38a421a17b199e2207bc0009cba6869d17d4c21 Mon Sep 17 00:00:00 2001
From: Micah Anderson <micah@riseup.net>
Date: Tue, 4 Jul 2017 17:56:25 -0700
Subject: [PATCH] Ensure directory has proper owner/group (#8841)

---
 puppet/modules/site_apache/manifests/common/autorestart.pp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/puppet/modules/site_apache/manifests/common/autorestart.pp b/puppet/modules/site_apache/manifests/common/autorestart.pp
index 0273f272..6d8c4c3a 100644
--- a/puppet/modules/site_apache/manifests/common/autorestart.pp
+++ b/puppet/modules/site_apache/manifests/common/autorestart.pp
@@ -5,6 +5,8 @@ class site_apache::common::autorestart {
 
   file { '/etc/systemd/system/apache2.service.d':
     ensure => directory,
+    owner  => root,
+    group  => root,
     mode   => '0755',
   }
 
-- 
GitLab