diff -Nur e-smith-mysql-2.6.0.old/root/etc/e-smith/events/actions/mysql-dump-tables e-smith-mysql-2.6.0/root/etc/e-smith/events/actions/mysql-dump-tables --- e-smith-mysql-2.6.0.old/root/etc/e-smith/events/actions/mysql-dump-tables 2016-02-05 17:29:32.000000000 -0500 +++ e-smith-mysql-2.6.0/root/etc/e-smith/events/actions/mysql-dump-tables 2016-07-18 03:27:37.034000000 -0400 @@ -1,6 +1,6 @@ #!/bin/sh -status=$(/sbin/e-smith/config getprop mysqld status) +status=$(/sbin/e-smith/config getprop mariadb status) if [ "$status" = "disabled" ] then echo "mysqld is disabled - no tables dumped" >&2 diff -Nur e-smith-mysql-2.6.0.old/root/etc/e-smith/events/actions/mysql-load-tables e-smith-mysql-2.6.0/root/etc/e-smith/events/actions/mysql-load-tables --- e-smith-mysql-2.6.0.old/root/etc/e-smith/events/actions/mysql-load-tables 2016-02-05 17:29:32.000000000 -0500 +++ e-smith-mysql-2.6.0/root/etc/e-smith/events/actions/mysql-load-tables 2016-07-18 03:26:07.858000000 -0400 @@ -1,6 +1,6 @@ #!/bin/sh -status=$(/sbin/e-smith/config getprop mysqld status) +status=$(/sbin/e-smith/config getprop mariadb status) if [ "$status" = "disabled" ] then echo "mysqld is disabled - no tables restored" >&2 diff -Nur e-smith-mysql-2.6.0.old/root/etc/e-smith/templates/etc/my.cnf/009socket e-smith-mysql-2.6.0/root/etc/e-smith/templates/etc/my.cnf/009socket --- e-smith-mysql-2.6.0.old/root/etc/e-smith/templates/etc/my.cnf/009socket 2003-12-18 17:10:32.000000000 -0500 +++ e-smith-mysql-2.6.0/root/etc/e-smith/templates/etc/my.cnf/009socket 2016-07-18 03:23:58.914000000 -0400 @@ -1,5 +1,5 @@ socket=/var/lib/mysql/mysql.sock { - my $localonly = $mysqld{LocalNetworkingOnly} || "no"; + my $localonly = $mariadb{LocalNetworkingOnly} || "no"; $OUT = ($localonly eq 'yes') ? "skip-networking" : "# networking is enabled"; } diff -Nur e-smith-mysql-2.6.0.old/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit e-smith-mysql-2.6.0/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit --- e-smith-mysql-2.6.0.old/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit 2013-02-13 18:00:24.000000000 -0500 +++ e-smith-mysql-2.6.0/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit 2016-07-18 03:23:30.528000000 -0400 @@ -1,7 +1,7 @@ { $OUT = ''; - my $limit = ${'mysqld'}{OpenFilesLimit} || 0; + my $limit = ${'mariadb'}{OpenFilesLimit} || 0; return if $limit eq 0; $OUT .= "open_files_limit=$limit\n";