debian-mirror-gitlab/debian/adduser.sh

15 lines
523 B
Bash
Raw Normal View History

2015-09-24 12:14:52 +05:30
#!/bin/sh
2016-02-18 13:02:28 +05:30
# add gitlab user (requires adduser >= 3.34)
2015-09-24 12:14:52 +05:30
# don't muck around with this unless you KNOW what you're doing
2016-02-18 13:02:28 +05:30
# 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 --home /var/lib/${gitlab_user} --gecos "${gitlab_user} user" --shell /bin/sh \
--quiet --disabled-password ${gitlab_user} || {
echo "Proceeding with existing ${gitlab_user} user..."
2015-09-24 12:14:52 +05:30
}