mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 20:55:19 +03:00
7 lines
135 B
Bash
7 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
|
|
|