Skip to content

Commit

Permalink
Fix permission on MySQL plugin file
Browse files Browse the repository at this point in the history
This change modifies the permissions on the MySQL plugin configuration
file to avoid making it readable by everybody.
  • Loading branch information
Simon Pasquier committed Apr 14, 2015
1 parent a47ffaf commit e9f42c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/plugin/mysql/database.pp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
file { "${name}.conf":
ensure => $ensure,
path => "${conf_dir}/mysql-${name}.conf",
mode => '0644',
mode => '0640',
owner => 'root',
group => $collectd::params::root_group,
content => template('collectd/mysql-database.conf.erb'),
Expand Down

0 comments on commit e9f42c2

Please sign in to comment.