Package: vrfydmn
Version: 0.11.0-1

Hello,

the postinst script checks for user opendkim, and if it does not exist, creates user vrfydmn.
this causes postinst to fail so the package is left in unconfigured state.
I believe this is an error and the user vrfydmn is to be checked and/or created.

I'm attaching patch that fixes this behaviour.

--
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
Linux IS user friendly, it's just selective who its friends are...
--- vrfydmn.postinst-old	2019-07-08 15:00:31.000000000 +0200
+++ vrfydmn.postinst	2022-04-29 12:55:42.987613617 +0200
@@ -20,7 +20,7 @@
 }
 
 if [ "$1" = "configure" ]; then
-	if ! id -u opendkim >/dev/null 2>&1; then
+	if ! id -u vrfydmn >/dev/null 2>&1; then
 		adduser --quiet --system --group --home /var/run/vrfydmn vrfydmn
 	fi
 

Reply via email to