debian-mirror-gitlab/debian/adduser.sh
2018-06-12 21:00:26 +05:30

15 lines
532 B
Bash
Executable file

#!/bin/sh
# add gitlab user (requires adduser >= 3.34)
# don't muck around with this unless you KNOW what you're doing
# Take gitlab_user from envornment variable or use gitlab
test -n "${gitlab_user}" || gitlab_user="gitlab"
# Create gitlab user with home in /var/lib
echo "Creating/updating ${gitlab_user} user account..."
adduser --system --home /var/lib/gitlab --gecos "${gitlab_user} user" --shell /bin/sh \
--quiet --disabled-password --group ${gitlab_user} || {
echo "Proceeding with existing ${gitlab_user} user..."
}