mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
8 lines
206 B
Bash
8 lines
206 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S -g 82 www-data 2>/dev/null
|
|
adduser -S -D -H -h /var/www/localhost/htdocs -s /sbin/nologin \
|
|
-g minihttpd minihttpd 2>/dev/null
|
|
addgroup minihttpd www-data 2>/dev/null
|
|
|
|
exit 0
|