OP#410 fix username

This commit is contained in:
12ww1160
2026-02-03 01:22:11 +01:00
parent e93cf3c795
commit 3a0137ff09
2 changed files with 5 additions and 5 deletions

View File

@@ -143,7 +143,7 @@ class confdroid_apache::server::dirs (
ensure => directory,
path => $ae_run_dir,
owner => 'root',
group => $ae_user_name,
group => 'apache',
mode => '0710',
selrange => s0,
selrole => object_r,
@@ -185,8 +185,8 @@ class confdroid_apache::server::dirs (
file { $ae_cache_httpd:
ensure => directory,
path => $ae_cache_httpd,
owner => $ae_user_name,
group => $ae_user_name,
owner => 'apache',
group => 'apache',
mode => '0700',
selrange => s0,
selrole => object_r,

View File

@@ -97,8 +97,8 @@ class confdroid_apache::server::files (
file { $ae_index_file:
ensure => file,
path => $ae_index_file,
owner => $ae_user_name,
group => $ae_user_name,
owner => 'apache',
group => 'apache',
mode => '0644',
selrange => s0,
selrole => object_r,