6 lines
107 B
Bash
6 lines
107 B
Bash
#!/bin/bash
|
|
|
|
if [ -d /srv/pgsql/data ]; then
|
|
/usr/bin/postgresql-check-db-dir /srv/pgsql/data || true
|
|
fi
|