fix (plugin): use grep -E instead of egrep in postgres.plugin.bash

pull/2168/head
Gurkirat Singh 2022-10-07 19:46:01 +05:30
parent bf2034d13d
commit 906e2da955
No known key found for this signature in database
GPG Key ID: BD8D9949734FDB24
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ function postgres_status {
function is_postgres_running {
$POSTGRES_BIN/pg_ctl -D $PGDATA status | egrep -o "no server running"
$POSTGRES_BIN/pg_ctl -D $PGDATA status | grep -E -o "no server running"
}