#!/bin/sh

FILES="$(ls -l /var/lib/pgsql/data/*)"

if [ -z "$FILES" ]; then
	initdb -D /var/lib/pgsql/data
fi
