Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • liu-puppet-modules/aim_control
  • nilpa76/aim_control
2 results
Show changes
Commits on Source (2)
......@@ -244,4 +244,13 @@ class aim_control (
backuprotate => '7',
time => ['1','0'],
}
# Ensure the MySQL directory is managed properly
file { '/var/lib/mysql':
ensure => 'directory',
owner => 'mysql',
group => 'mysql',
mode => '0755',
require => Class['mysql::server'], # Ensure MySQL is configured before setting permissions
}
}