fix: permissions for cobbler files

- ensure idempotency for /var/lib/cobbler/web.ss
This commit is contained in:
Ben Vincent 2024-12-08 08:36:35 +11:00
parent f097cf2550
commit 41aab65f85

View File

@ -47,8 +47,8 @@ class profiles::cobbler::config {
# fix permissions in /var/lib/cobbler/web.ss
file {'/var/lib/cobbler/web.ss':
ensure => 'file',
group => 'root',
owner => 'apache',
group => 'apache',
owner => 'root',
mode => '0660',
require => Package['cobbler'],
notify => Service['cobblerd'],