Module Name: src
Committed By: riastradh
Date: Mon Jan 29 00:57:38 UTC 2024
Modified Files:
src/usr.sbin/postinstall: postinstall.in
Log Message:
postinstall(8): Don't say /etc/openssl/certs.conf already exists.
It's confusing when all the other `postinstall fix' actions are
silent in the event they don't have anything to do.
PR install/57885
To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/usr.sbin/postinstall/postinstall.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/postinstall/postinstall.in
diff -u src/usr.sbin/postinstall/postinstall.in:1.57 src/usr.sbin/postinstall/postinstall.in:1.58
--- src/usr.sbin/postinstall/postinstall.in:1.57 Wed Oct 18 13:10:34 2023
+++ src/usr.sbin/postinstall/postinstall.in Mon Jan 29 00:57:38 2024
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: postinstall.in,v 1.57 2023/10/18 13:10:34 riastradh Exp $
+# $NetBSD: postinstall.in,v 1.58 2024/01/29 00:57:38 riastradh Exp $
#
# Copyright (c) 2002-2022 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1685,7 +1685,6 @@ do_opensslcertsconf()
fix) # If /etc/openssl/certs.conf is already there, nothing
# to do.
if [ -r "$certsconf" ]; then
- msg "/etc/openssl/certs.conf already exists"
return 0
fi