public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH] acct-user.eclass: ignore missing directory in preinst
@ 2019-08-14 23:54 Mike Gilbert
  2019-08-15  6:04 ` Michał Górny
  2019-08-15  7:19 ` Ulrich Mueller
  0 siblings, 2 replies; 6+ messages in thread
From: Mike Gilbert @ 2019-08-14 23:54 UTC (permalink / raw
  To: gentoo-dev

Closes: https://bugs.gentoo.org/691478
---
 eclass/acct-user.eclass | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/eclass/acct-user.eclass b/eclass/acct-user.eclass
index 60009643c144..077f85417ce8 100644
--- a/eclass/acct-user.eclass
+++ b/eclass/acct-user.eclass
@@ -334,8 +334,12 @@ acct-user_pkg_preinst() {
 		if [[ -z ${ACCT_USER_HOME_OWNER} ]]; then
 			ACCT_USER_HOME_OWNER=${ACCT_USER_NAME}:${ACCT_USER_GROUPS[0]}
 		fi
-		fowners "${ACCT_USER_HOME_OWNER}" "${ACCT_USER_HOME}"
-		fperms "${ACCT_USER_HOME_PERMS}" "${ACCT_USER_HOME}"
+		# Path might be missing due to INSTALL_MASK, etc.
+		# https://bugs.gentoo.org/691478
+		if [[ -e "${ED}/${ACCT_USER_HOME#/}" ]]; then
+			fowners "${ACCT_USER_HOME_OWNER}" "${ACCT_USER_HOME}"
+			fperms "${ACCT_USER_HOME_PERMS}" "${ACCT_USER_HOME}"
+		fi
 	fi
 }
 
-- 
2.23.0.rc1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-08-16  9:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-14 23:54 [gentoo-dev] [PATCH] acct-user.eclass: ignore missing directory in preinst Mike Gilbert
2019-08-15  6:04 ` Michał Górny
2019-08-15  7:19 ` Ulrich Mueller
2019-08-15 12:33   ` Michael Orlitzky
2019-08-15 14:47     ` Mike Gilbert
2019-08-16  9:24       ` Jaco Kroon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox