Skip to content

Commit

Permalink
config file: owner and group configurable (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Van Damme committed May 19, 2017
1 parent 12ed459 commit f32afab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
path => $proxysql::config_file,
content => template('proxysql/proxysql.cnf.erb'),
mode => '0640',
owner => $proxysql::params::sys_owner,
group => $proxysql::params::sys_group,
owner => $proxysql::sys_owner,
group => $proxysql::sys_group,
selinux_ignore_defaults => true,
}
}
Expand All @@ -22,8 +22,8 @@
ensure => file,
path => $proxysql::mycnf_file_name,
content => template('proxysql/my.cnf.erb'),
owner => $proxysql::params::sys_owner,
group => $proxysql::params::sys_group,
owner => $proxysql::sys_owner,
group => $proxysql::sys_group,
mode => '0400',
}
}
Expand Down

0 comments on commit f32afab

Please sign in to comment.