mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
8 lines
172 B
Bash
8 lines
172 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S proftpd 2>/dev/null
|
|
adduser -S -D -h /var/lib/ftp -s /sbin/nologin -G proftpd -g proftpd proftpd 2>/dev/null
|
|
adduser proftpd ftp 2>/dev/null
|
|
|
|
exit 0
|