kandra: Correct group ownership and permissions to match package's.

This reverts b000328ba5 and re-applies
a759d26a32.  It is likely that the
upstream packages are simply inconsistent.
This commit is contained in:
Alex Vandiver 2024-08-16 17:41:26 +00:00 committed by Tim Abbott
parent a5a898ba21
commit c0237e3d58
1 changed files with 4 additions and 4 deletions

View File

@ -4,14 +4,14 @@ class kandra::ksplice_uptrack {
file { '/etc/uptrack':
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
group => 'adm',
mode => '0750',
}
file { '/etc/uptrack/uptrack.conf':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
group => 'adm',
mode => '0640',
content => template('kandra/uptrack/uptrack.conf.erb'),
}
$setup_apt_repo_file = "${facts['zulip_scripts_path']}/lib/setup-apt-repo"