mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 10:45:15 +03:00
6 lines
141 B
Bash
6 lines
141 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S traefik 2>/dev/null
|
|
adduser -S -H -D -h /var/empty -s /sbin/nologin -G traefik -g traefik traefik 2>/dev/null
|
|
|
|
exit 0
|