From 842e88aba410d442084c0ba49d265609c76e94ed Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 7 Aug 2017 16:22:13 -0400 Subject: [PATCH] sys-user.eclass: fix typo in shell conflict message. --- eclass/sys-user.eclass | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eclass/sys-user.eclass b/eclass/sys-user.eclass index 549e8b3..3f20c57 100644 --- a/eclass/sys-user.eclass +++ b/eclass/sys-user.eclass @@ -1,6 +1,5 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ # @ECLASS: sys-user.eclass # @MAINTAINER: @@ -208,11 +207,11 @@ sys-user_pkg_preinst() { local oldshell=$(egetshell "${SYS_USER_NAME}") if [[ "${oldhome}" != "${SYS_USER_HOME}" ]]; then - die "home directory conflict for new user ${SYS_USER_HOME}" + die "home directory conflict for new user: ${SYS_USER_HOME}" fi if [[ "${oldhshell}" != "${SYS_USER_SHELL}" ]]; then - die "shell conflict for new user ${SYS_USER_HOME}" + die "shell conflict for new user: ${SYS_USER_SHELL}" fi # The user already exists, so all we have left to do is to try -- 2.43.2