updating perms for files

This commit is contained in:
Matthew 2023-09-14 13:23:49 -05:00
parent ce4188f385
commit 66000f897c
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ define bind::key (
$secret = undef, $secret = undef,
$secret_bits = 256, $secret_bits = 256,
$algorithm = 'hmac-sha256', $algorithm = 'hmac-sha256',
$owner = 'root', $owner = 'bind',
$group = $::bind::defaults::bind_group, $group = $::bind::defaults::bind_group,
$keydir = $::bind::keydir::keydir, $keydir = $::bind::keydir::keydir,
$keyfile = undef, $keyfile = undef,

View File

@ -6,7 +6,7 @@ class bind::keydir (
file { $keydir: file { $keydir:
ensure => directory, ensure => directory,
mode => '0755', mode => '0755',
owner => 'root', owner => 'bind',
group => 'bind', group => 'bind',
} }
} }