We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a1e1a5 + 13e2639 commit c9f2baeCopy full SHA for c9f2bae
controls/mysql_conf.rb
@@ -33,7 +33,9 @@
33
mysql_config_file = mysql_config_path + 'my.cnf'
34
mysql_data_path = '/var/lib/mysql/'
35
mysql_log_path = '/var/log/'
36
+ mysql_log_path = '/var/log/mariadb/' if os[:release] >= '7'
37
mysql_log_file = 'mysqld.log'
38
+ mysql_log_file = 'mariadb.log' if os[:release] >= '7'
39
mysql_log_group = 'mysql'
40
service_name = 'mysqld'
41
service_name = 'mariadb' if os[:release] >= '7'
0 commit comments