aports/main/postgresql-common/postgresql-common.pre-install

10 lines
301 B
Bash

#!/bin/sh
# Fixed GID/UID values as this users was previously included in the
# default /etc/passwd as shipped by main/alpine-baselayout.
addgroup -g 70 -S postgres 2>/dev/null
adduser -u 70 -S -D -H -h /var/lib/postgresql -g "PostgreSQL user" \
-s /bin/sh -G postgres postgres 2>/dev/null
exit 0