This commit is contained in:
pettai 2024-06-12 16:45:10 +02:00
parent e0274dba57
commit eebf6dae98
No known key found for this signature in database
GPG key ID: CDF2C381E9A751BD

View file

@ -33,6 +33,15 @@ class dns::knotdns(
}
file { '/etc/knot/conf.d':
ensure => directory,
mode => '0750',
owner => 'root',
group => 'knot',
}
file { '/var/lib/knot/zones':
ensure => directory,
mode => '0750',
owner => 'knot',
group => 'knot',
}
# Install KnotREST configuration
@ -44,6 +53,7 @@ class dns::knotdns(
ensure => directory,
mode => '0750',
owner => 'knot_rest',
group => 'knot_rest',
}
}