mirror of
git://git.acid.vegas/random.git
synced 2024-11-14 12:06:38 +00:00
7 lines
426 B
Bash
7 lines
426 B
Bash
#/bin/sh
|
|
[ ! getent group ssh ] && groupadd ssh
|
|
[ ! grep -q /usr/bin/git-shell /etc/shells ] && echo /usr/bin/git-shell >> /etc/shells
|
|
[ ! $(getent passwd git > /dev/null) ] && userdel -f git
|
|
useradd -d /srv/git -G ssh -k /dev/null -m -s /usr/bin/git-shell -U git
|
|
echo "PUBLICKEY" > /etc/ssh/authorized_keys/git
|
|
mkdir "$1.git" && cd "$1.git" && git -C "$1.git" --bare init chown -R git:git "$1.git" |