mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
When user upgrade this package and do not update confd files, then it will still run as root, for backward compatibility.
7 lines
167 B
Bash
7 lines
167 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S dkimproxy 2>/dev/null
|
|
adduser -SDH -h /dev/null -s /sbin/nologin -G dkimproxy -g dkimproxy dkimproxy 2>/dev/null
|
|
adduser dkimproxy mail
|
|
|
|
exit 0
|