mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
fix user creation and db directory permissions fix init.d script - explictly set process-owner and pid-file. add post-install to generate initial keypair move non-server binaries and perl-depended script to -utils subpackage
8 lines
166 B
Bash
8 lines
166 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S opendkim 2>/dev/null
|
|
adduser -SDH -h /run/opendkim -s /sbin/nologin -G opendkim -g opendkim opendkim 2>/dev/null
|
|
adduser opendkim mail
|
|
|
|
exit 0
|