1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-04 20:22:42 +03:00

Merge pull request #1137 from pleblanc1976/script-typo

Fixed a typo in post-mysql-install re systemd detection.
This commit is contained in:
Jose Rojas
2020-04-07 15:08:13 -05:00
committed by GitHub

View File

@@ -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