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 AA425138336 for ; Fri, 17 May 2019 21:16:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B276FE085B; Fri, 17 May 2019 21:16:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98D9FE085B for ; Fri, 17 May 2019 21:16:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 832263449C6 for ; Fri, 17 May 2019 21:16:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F8105E6 for ; Fri, 17 May 2019 21:16:05 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1558127732.e021b64de0dc396a0e5fd0c38347a353ac073081.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/zfs/zfs-9999.ebuild X-VCS-Directories: sys-fs/zfs/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: e021b64de0dc396a0e5fd0c38347a353ac073081 X-VCS-Branch: master Date: Fri, 17 May 2019 21:16:05 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3ceadda3-0cad-4b4a-a07f-f074134dae28 X-Archives-Hash: 63662b630ba81a2a6ae8808b223c22fb commit: e021b64de0dc396a0e5fd0c38347a353ac073081 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri May 17 18:49:17 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri May 17 21:15:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e021b64d sys-fs/zfs: update live ebuild pass --localstatedir="/var", not /var/lib otherwise pid files end up in /var/lib/run, which is wrong. localstatedir is only used to define runstatedir AC_SUBST([runstatedir], ['${localstatedir}/run']) the following will change: zed pid and state file location (assuming /var/run is a symlink to /run) /var/lib/run/zed.{pid,state} -> /var/run/zed.{pid,state} zfs-list.cache.new will be temporary generated there. Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> sys-fs/zfs/zfs-9999.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild index bde2d9e06bc..e24458b4194 100644 --- a/sys-fs/zfs/zfs-9999.ebuild +++ b/sys-fs/zfs/zfs-9999.ebuild @@ -120,6 +120,7 @@ src_configure() { --bindir="${EPREFIX}/bin" --enable-systemd --enable-sysvinit + --localstatedir="${EPREFIX}/var" --sbindir="${EPREFIX}/sbin" --with-config=user --with-dracutdir="${EPREFIX}/usr/lib/dracut"