From c26bd2275225c63ab8e7ca5477633ef95172278b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Mon, 4 Dec 2023 22:36:08 +0100 Subject: [PATCH] ci: fix systemctl is not available --- bin/install-wp-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 3c22d56..f4b3954 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -145,7 +145,7 @@ cremysqladminate_db() { install_db() { # the mariadb commands are not available on some self-hosted runner images apt update && apt-get install mariadb-server mariadb-client -y - systemctl start mariadb + service mariadb start if [ ${SKIP_DB_CREATE} = "true" ]; then return 0