mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
8 lines
135 B
Bash
8 lines
135 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S taskd 2>/dev/null
|
|
adduser -S -D -h /var/lib/taskd -s /sbin/nologin -G taskd -g taskd taskd 2>/dev/null
|
|
|
|
exit 0
|
|
|