fix (plugin): use grep -E instead of egrep in postgres.plugin.bash
parent
bf2034d13d
commit
906e2da955
|
|
@ -50,7 +50,7 @@ function postgres_status {
|
||||||
|
|
||||||
|
|
||||||
function is_postgres_running {
|
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"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue