postgresql: make post-install idempotent

This commit is contained in:
Thomas Penteker 2016-03-18 23:11:58 +01:00
parent ffbf7a45cb
commit 3528c446fb

View File

@ -8,6 +8,8 @@ ID=42
getent group ${GROUP} >/dev/null || groupadd -r ${GROUP}
getent passwd ${USER} >/dev/null || useradd -u $ID -d ${HOME} -g ${GROUP} -s /bin/false ${USER}
test -d ${HOME} && exit 0
install -d -o ${USER} -g ${GROUP} ${HOME}
su -s /bin/sh -c "pg_ctl -D ${HOME} initdb" ${USER}