mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 08:26:49 +02:00
7 lines
135 B
Bash
7 lines
135 B
Bash
#!/bin/sh
|
|
|
|
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
|