aports/main/pgpool/pgpool.pre-install
2019-11-09 22:59:07 +01:00

10 lines
299 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 "Postgres user" \
-s /bin/sh -G postgres postgres 2>/dev/null
exit 0