mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S ldap 2>/dev/null
|
|
adduser -h /usr/lib/openldap -s /sbin/nologin -S -D -H -g "OpenLdap User" \
|
|
-G ldap ldap 2>/dev/null
|
|
|
|
exit 0
|