mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S dspam 2>/dev/null
|
|
adduser -S -D -h /var/lib/dspam -s /bin/false -G dspam -g dspam dspam 2>/dev/null
|
|
chown dspam:dspam /var/lib/dspam
|
|
|
|
exit 0
|