mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
9 lines
179 B
Bash
9 lines
179 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S -g 82 www-data 2>/dev/null
|
|
addgroup -S wt 2>/dev/null
|
|
adduser -S -D -H -s /sbin/nologin -G wt -g wt wt 2>/dev/null
|
|
addgroup wt www-data 2>/dev/null
|
|
|
|
exit 0
|