mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 15:12:02 +01:00
7 lines
141 B
Bash
7 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
|