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 AA371138010 for ; Sun, 21 Oct 2012 19:51:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB62AE0027; Sun, 21 Oct 2012 19:51:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4CB20E0027 for ; Sun, 21 Oct 2012 19:51:31 +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 AE71733C235 for ; Sun, 21 Oct 2012 19:51:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5199EE5436 for ; Sun, 21 Oct 2012 19:51:29 +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: <1350849029.74c6b554bcdbed5e41c9d6dde16bf636bfa8a758.WilliamH@OpenRC> Subject: [gentoo-commits] proj/openrc:master 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: 74c6b554bcdbed5e41c9d6dde16bf636bfa8a758 X-VCS-Branch: master Date: Sun, 21 Oct 2012 19:51:29 +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: b3d56844-fe51-4e47-a3f2-4a7a8de195ff X-Archives-Hash: 74b5f20d1ee31c9050dd0eddda3bd29d commit: 74c6b554bcdbed5e41c9d6dde16bf636bfa8a758 Author: William Hubbs gmail com> AuthorDate: Sun Oct 21 19:45:45 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Oct 21 19:50:29 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=74c6b554 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}