mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 20:25:17 +03:00
7 lines
145 B
Bash
7 lines
145 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S celery 2>/dev/null
|
|
adduser -S -D -H -h /usr/share/celery -s /sbin/nologin -G celery -g celery celery 2>/dev/null
|
|
|
|
exit 0
|
|
|