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 1AFCA138010 for ; Sun, 21 Oct 2012 19:53:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A541FE0329; Sun, 21 Oct 2012 19:53:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2C70EE0329 for ; Sun, 21 Oct 2012 19:53:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 919A933D7D7 for ; Sun, 21 Oct 2012 19:53:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 45E93E5436 for ; Sun, 21 Oct 2012 19:53:06 +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: <1350849157.ee54bfef057284dc5684a18275fc491741732012.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:openrc-0.11.x commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/tmpfiles.sh.in X-VCS-Directories: sh/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: ee54bfef057284dc5684a18275fc491741732012 X-VCS-Branch: openrc-0.11.x Date: Sun, 21 Oct 2012 19:53:06 +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: 9a32913e-1115-46e4-8f42-9f7b3e7efb6b X-Archives-Hash: 79b04f9f249c9a8a650318ee0958d938 commit: ee54bfef057284dc5684a18275fc491741732012 Author: William Hubbs gmail com> AuthorDate: Sun Oct 21 19:45:45 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Oct 21 19:52:37 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=ee54bfef tmpfiles: do not process systemd.conf This file contains definitions specific to systemd, so we should not process it. Reported-by: gmail.com> --- sh/tmpfiles.sh.in | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/sh/tmpfiles.sh.in b/sh/tmpfiles.sh.in index a341845..2486da2 100755 --- a/sh/tmpfiles.sh.in +++ b/sh/tmpfiles.sh.in @@ -201,6 +201,7 @@ tmpfiles_d='' # `/run/tmpfiles/foo.conf' will always be read after `/etc/tmpfiles.d/bar.conf' for d in ${tmpfiles_dirs} ; do [ -d $d ] && for f in ${d}/*.conf ; do + [ "$f" = "$d/systemd.conf" ] && continue [ -f $f ] && tmpfiles_basenames="${tmpfiles_basenames}\n${f##*/}" done # for f in ${d} done # for d in ${tmpfiles_dirs}