Remove harmful whitespace. Now the /var/shm check can succeed quietly.
This commit is contained in:
parent
b39a3f4728
commit
69d52dbe21
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: postinstall,v 1.162 2014/01/17 19:06:57 martin Exp $
|
||||
# $NetBSD: postinstall,v 1.163 2014/01/29 12:56:28 skrll Exp $
|
||||
#
|
||||
# Copyright (c) 2002-2008 The NetBSD Foundation, Inc.
|
||||
# All rights reserved.
|
||||
|
@ -1872,7 +1872,7 @@ do_varshm()
|
|||
[ -f "${DEST_DIR}/etc/fstab" ] || return 0
|
||||
if ${GREP} -w "/var/shm" "${DEST_DIR}/etc/fstab" >/dev/null 2>&1;
|
||||
then
|
||||
failed = 0;
|
||||
failed=0;
|
||||
else
|
||||
if [ "${op}" = "check" ]; then
|
||||
failed=1
|
||||
|
|
Loading…
Reference in New Issue