mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 19:36:44 +02:00
7 lines
149 B
Bash
7 lines
149 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S -g 82 www-data 2>/dev/null
|
|
adduser -S -D -H -h /var/run/fcgiwrap -s /sbin/nologin -G www-data \
|
|
fcgiwrap 2>/dev/null
|
|
exit 0
|
|
|