Update etcupdate to 20021227:
- Fix a typo in the yesno() function: add a missing question mark. Approved by martti.
This commit is contained in:
parent
51cc184bc9
commit
c759671d65
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.16 2002/09/28 06:18:35 martti Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2002/12/27 19:41:45 jmmv Exp $
|
||||
|
||||
DISTNAME= etcupdate-20020928
|
||||
DISTNAME= etcupdate-20021227
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= # empty
|
||||
DISTFILES= # empty
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $NetBSD: etcupdate,v 1.17 2002/09/28 06:18:35 martti Exp $
|
||||
# $NetBSD: etcupdate,v 1.18 2002/12/27 19:41:46 jmmv Exp $
|
||||
#
|
||||
# Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
# All rights reserved.
|
||||
|
@ -95,7 +95,7 @@ verbose() {
|
|||
yesno() {
|
||||
# $* = message to display
|
||||
|
||||
echo -n "${*} (y/[n]) "
|
||||
echo -n "${*}? (y/[n]) "
|
||||
read ANSWER
|
||||
case "${ANSWER}" in
|
||||
y|Y)
|
||||
|
|
Loading…
Reference in a new issue