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': file { '/etc/uptrack':
ensure => directory, ensure => directory,
owner => 'root', owner => 'root',
group => 'root', group => 'adm',
mode => '0755', mode => '0750',
} }
file { '/etc/uptrack/uptrack.conf': file { '/etc/uptrack/uptrack.conf':
ensure => file, ensure => file,
owner => 'root', owner => 'root',
group => 'root', group => 'adm',
mode => '0644', mode => '0640',
content => template('kandra/uptrack/uptrack.conf.erb'), content => template('kandra/uptrack/uptrack.conf.erb'),
} }
$setup_apt_repo_file = "${facts['zulip_scripts_path']}/lib/setup-apt-repo" $setup_apt_repo_file = "${facts['zulip_scripts_path']}/lib/setup-apt-repo"