mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 11:49:53 +03:00
8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/bin/sh
|
|
|
|
addgroup -S tinyproxy 2>/dev/null
|
|
adduser -S -D -H -h /dev/null -s /sbin/nologin -G tinyproxy \
|
|
-g "tinyproxy user" tinyproxy 2>/dev/null
|
|
|
|
# return with success even if user already exist
|
|
exit 0
|