1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

main/gitolite: unlock git user

adduser will create a locked account which prevents using gitolite via ssh after setup.
This commit is contained in:
Armin Preiml 2024-12-27 10:03:45 +00:00 committed by Kevin Daudt
parent f15229c814
commit bd5af21b99
2 changed files with 2 additions and 1 deletions

View file

@ -3,7 +3,7 @@
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
pkgname=gitolite
pkgver=3.6.13
pkgrel=0
pkgrel=1
pkgdesc="Centralized git server, with very fine-grained access control and many powerful features"
url="https://github.com/sitaramc/gitolite"
arch="noarch"

View file

@ -2,5 +2,6 @@
addgroup -S git 2>/dev/null
adduser -S -D -H -h /var/lib/git -s /bin/sh -G git -g git git 2>/dev/null
passwd -u git
exit 0