From 82fb035eccdd26adb0751b243075a3bd7efd9366 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Wed, 14 Oct 2015 07:05:42 +0200 Subject: [PATCH] MDEV-426: mariadb-service-convert to use MYSQLD_OPTS During the review process OPTIONS was converted to MYSQLD_OPTS. In the script mariadb-service convert, the ExecStart of the system also uses this setting. --- scripts/mariadb-service-convert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mariadb-service-convert b/scripts/mariadb-service-convert index 3f241d13107..c2cea95c07c 100755 --- a/scripts/mariadb-service-convert +++ b/scripts/mariadb-service-convert @@ -73,7 +73,7 @@ fi if [[ "${numa_interleave}" -gt 0 ]]; then echo - echo ExecStart=numactl --interleave=all ${cmd} '${OPTIONS}' + echo ExecStart=numactl --interleave=all ${cmd} '${MYSQLD_OPTS}' echo fi