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
|
|
|