X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 6706ADC0097 for ; Mon, 1 Jul 2013 21:14:19 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id D02FA20916 for ; Mon, 1 Jul 2013 17:14:18 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Mon, 01 Jul 2013 17:14:18 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=pxS5k+5rg/RLL/wuHjrfr0qjN qA=; b=fvlnEhZcuHgVRc3eR/+P+73qmQu96VrD5XtwkStst1rUJNrWNoHl5TwF0 /mMTjHXl2uMW5PQXDYo1fIoi2IDlXfZ5diquhbIT3fWaeyuHeZv1CmrCqldzUHt7 0pEMxz8O4suN1qlW1uAqvpBrysiSvosiLLnNLTKkhRO6cJ+3zk= X-Sasl-enc: qif+SYwX33XoOu1z6CcX8wqeuR7wKGqlbXuKmDAjnGec 1372713258 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 90F2F680268 for ; Mon, 1 Jul 2013 17:14:18 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/4] libalpine: reword some messages Date: Mon, 1 Jul 2013 17:14:15 -0400 Message-Id: <7544e691137b8cbd4a475debecbba1449bdd5148.1372713126.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- libalpine.sh.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libalpine.sh.in b/libalpine.sh.in index adfacb6..a03deb3 100644 --- a/libalpine.sh.in +++ b/libalpine.sh.in @@ -52,12 +52,12 @@ init_tmpdir() { } pkg_inst() { - eecho "warning: pkg_inst is deprecated. Use 'apk add --quiet' in script" + eecho "WARNING: pkg_inst is deprecated. Use 'apk add --quiet' in script" [ -z "$NOCOMMIT" ] && apk add --quiet $* } pkg_deinst() { - eecho "warning: pkg_deinst is deprecated. Use 'apk del --quiet' in script" + eecho "WARNING: pkg_deinst is deprecated. Use 'apk del --quiet' in script" [ -z "$NOCOMMIT" ] && apk del --quiet $* } @@ -92,7 +92,7 @@ is_xen_dom0() { grep -q "control_d" /proc/xen/capabilities } -# list of acailable network interfaces thats not part of any bridge or bond +# list of available network interfaces that aren't part of any bridge or bond available_ifaces() { local iflist= ifpath= iface= i= sorted_ifindexes=$( -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---