Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/postinstall Restrict npf.conf fixes to "blacklistd"...



details:   https://anonhg.NetBSD.org/src/rev/79e17cfcc7c6
branches:  trunk
changeset: 943202:79e17cfcc7c6
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Aug 28 15:25:16 2020 +0000

description:
Restrict npf.conf fixes to "blacklistd" -> "blocklistd"

diffstat:

 usr.sbin/postinstall/postinstall.in |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r e354950974a7 -r 79e17cfcc7c6 usr.sbin/postinstall/postinstall.in
--- a/usr.sbin/postinstall/postinstall.in       Fri Aug 28 14:58:25 2020 +0000
+++ b/usr.sbin/postinstall/postinstall.in       Fri Aug 28 15:25:16 2020 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: postinstall.in,v 1.31 2020/07/07 12:01:21 simonb Exp $
+# $NetBSD: postinstall.in,v 1.32 2020/08/28 15:25:16 christos Exp $
 #
 # Copyright (c) 2002-2015 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -859,7 +859,11 @@
                else
                        local p=$(${STAT} -f %Lp "${target}")
                        chmod u+w "${target}" || return 1
-                       ${SED} -i -e 's/\([bB]\)lack/\1lock/g' "${target}"
+                       if [ "$2" = "/etc/npf.conf" ]; then
+                               ${SED} -i -e 's/"blacklistd/"blocklistd"/g' "${target}"
+                       else
+                               ${SED} -i -e 's/\([bB]\)lacklist/\1locklist/g' "${target}"
+                       fi
                        chmod "${p}" "${target}"
                fi
        fi



Home | Main Index | Thread Index | Old Index