From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D480138330 for ; Wed, 28 Sep 2016 19:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB589E08C1; Wed, 28 Sep 2016 19:22:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC164E08C1 for ; Wed, 28 Sep 2016 19:22:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2435B340836 for ; Wed, 28 Sep 2016 19:22:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B697E2487 for ; Wed, 28 Sep 2016 19:21:59 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1475089240.61882821e0d6110a2ca2f67fad7c362983a85cf0.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/hwclock.in init.d/localmount.in init.d/procfs.in init.d/sysfs.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 61882821e0d6110a2ca2f67fad7c362983a85cf0 X-VCS-Branch: master Date: Wed, 28 Sep 2016 19:21:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0d68f1e-47c3-41e4-a734-1775bb2d7043 X-Archives-Hash: 72dfd343d8489c253fab3023b4bb98a2 commit: 61882821e0d6110a2ca2f67fad7c362983a85cf0 Author: Doug Freed mtu edu> AuthorDate: Wed Sep 28 19:00:40 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Sep 28 19:00:40 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=61882821 init.d: Clean up some bad ewarn output init.d/hwclock.in | 4 ++-- init.d/localmount.in | 4 ++-- init.d/procfs.in | 4 ++-- init.d/sysfs.in | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/init.d/hwclock.in b/init.d/hwclock.in index e69c561..f78cc7c 100644 --- a/init.d/hwclock.in +++ b/init.d/hwclock.in @@ -106,8 +106,8 @@ start() modprobe -q $x && rtc_exists && modname="$x" && break done [ -n "$modname" ] && - ewarn "The $modname module needs to be configured in \ - @SYSCONFDIR@/conf.d/modules or built in." + ewarn "The $modname module needs to be configured in" \ + "@SYSCONFDIR@/conf.d/modules or built in." fi fi diff --git a/init.d/localmount.in b/init.d/localmount.in index d2c9321..c953524 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -99,8 +99,8 @@ stop() aufs_branch=$(sed 's/=.*//g' $x) eindent if ! mount -o "remount,del:$aufs_branch" "$aufs_mount_point" > /dev/null 2>&1; then - ewarn "Failed to remove branch $aufs_branch from aufs \ - $aufs_mount_point" + ewarn "Failed to remove branch $aufs_branch from aufs" \ + "$aufs_mount_point" fi eoutdent sync diff --git a/init.d/procfs.in b/init.d/procfs.in index e04355e..2abeb03 100644 --- a/init.d/procfs.in +++ b/init.d/procfs.in @@ -26,8 +26,8 @@ start() [ ! -e /proc/sys/fs/binfmt_misc/register ]; then if ! grep -qs binfmt_misc /proc/filesystems && modprobe -q binfmt-misc; then - ewarn "The binfmt-misc module needs to be configured in \ - @SYSCONFDIR@/conf.d/modules or built in." + ewarn "The binfmt-misc module needs to be configured in" \ + "@SYSCONFDIR@/conf.d/modules or built in." fi if grep -qs binfmt_misc /proc/filesystems; then ebegin "Mounting misc binary format filesystem" diff --git a/init.d/sysfs.in b/init.d/sysfs.in index 87adacd..b9478f8 100644 --- a/init.d/sysfs.in +++ b/init.d/sysfs.in @@ -104,8 +104,8 @@ mount_misc() if [ -d /sys/firmware/efi/efivars ] \ && ! mountinfo -q /sys/firmware/efi/efivars; then if modprobe -q efivarfs; then - ewarn "The efivarfs module needs to be configured in \ - @SYSCONFDIR@/conf.d/modules or built in" + ewarn "The efivarfs module needs to be configured in" \ + "@SYSCONFDIR@/conf.d/modules or built in" fi if grep -qs efivarfs /proc/filesystems; then ebegin "Mounting efivarfs filesystem"