From 2b31e12a3868546658f163e777532abf3db92370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Rogo=C5=BCa?= Date: Sun, 2 Oct 2022 21:09:05 +0200 Subject: [PATCH] Same way of parameters everywhere. --- plugins/available/postgres.plugin.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/available/postgres.plugin.bash b/plugins/available/postgres.plugin.bash index 34ee6042..ecbb1f30 100644 --- a/plugins/available/postgres.plugin.bash +++ b/plugins/available/postgres.plugin.bash @@ -50,7 +50,7 @@ function postgres_status { function is_postgres_running { - $POSTGRES_BIN/pg_ctl -D $PGDATA status | grep -Eo "no server running" + $POSTGRES_BIN/pg_ctl -D $PGDATA status | grep -E -o "no server running" }