mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
8 lines
149 B
Bash
8 lines
149 B
Bash
#!/bin/sh
|
|
|
|
name=oidentd
|
|
|
|
addgroup -S "$name" 2>/dev/null
|
|
adduser -S -D -H -h /var/empty -s /sbin/nologin -G $name -g $name $name 2>/dev/null
|
|
|
|
exit 0
|