mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 02:02:08 +01:00
9 lines
149 B
Bash
9 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
|