From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1F75513888F for ; Mon, 5 Oct 2015 16:24:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB9E821C022; Mon, 5 Oct 2015 16:24:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 642FA21C022 for ; Mon, 5 Oct 2015 16:24:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57DFB34086E for ; Mon, 5 Oct 2015 16:24:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8467B756 for ; Mon, 5 Oct 2015 16:24:01 +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: <1444062128.bf0c0dd5644436efe4986c2b259b755d111266b9.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/bootmisc.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: bf0c0dd5644436efe4986c2b259b755d111266b9 X-VCS-Branch: master Date: Mon, 5 Oct 2015 16:24:01 +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: 6b5ca0b7-2201-4237-b322-a1c35f7c2911 X-Archives-Hash: 1165c904c9aeae8ccf3fb1e730054ed4 commit: bf0c0dd5644436efe4986c2b259b755d111266b9 Author: William Hubbs gmail com> AuthorDate: Mon Oct 5 16:21:55 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Oct 5 16:22:08 2015 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=bf0c0dd5 bootmisc: convert errors in clean_run function to warnings X-Gentoo-Bug: 552418 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=552418 init.d/bootmisc.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index 952475d..1a05920 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -121,11 +121,11 @@ clean_run() local dir # If / is still read-only due to a problem, this will fail! if ! checkpath -W /; then - eerror "/ is not writable; unable to clean up underlying /run" + ewarn "/ is not writable; unable to clean up underlying /run" return 1 fi if ! checkpath -W /tmp; then - eerror "/tmp is not writable; unable to clean up underlying /run" + ewarn "/tmp is not writable; unable to clean up underlying /run" return 1 fi # Now we know that we can modify /tmp and / @@ -141,7 +141,7 @@ clean_run() rc=1 fi if [ $rc -ne 0 ]; then - eerror "Could not clean up underlying /run on /" + ewarn "Could not clean up underlying /run on /" return 1 fi }