From a1b8df55e4ab3cbf4ad6aaa671b9dcaa2155d034 Mon Sep 17 00:00:00 2001 From: Patrick LeBlanc Date: Tue, 7 Apr 2020 16:01:37 -0400 Subject: [PATCH] Fixed a typo in post-mysql-install re systemd detection. --- oam/install_scripts/post-mysql-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oam/install_scripts/post-mysql-install b/oam/install_scripts/post-mysql-install index de2d920da..7960c7637 100755 --- a/oam/install_scripts/post-mysql-install +++ b/oam/install_scripts/post-mysql-install @@ -6,7 +6,7 @@ # check if running systemd running_systemd() { - if [ ps --no-headers -o comm 1 == "systemd" ]; then + if [ "$(ps --no-headers -o comm 1)" == "systemd" ]; then echo 0 else echo 1