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 50309138247 for ; Sun, 1 Dec 2013 17:11:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBBA2E07F4; Sun, 1 Dec 2013 17:10:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 80463E07F4 for ; Sun, 1 Dec 2013 17:10:58 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D02F33F2CE for ; Sun, 1 Dec 2013 17:10:56 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2238) id ECCCB2004B; Sun, 1 Dec 2013 17:10:54 +0000 (UTC) From: "Markos Chandras (hwoarang)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hwoarang@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/sssd/files: sssd-1.9.6-fix-init.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: sssd-1.9.6-fix-init.patch X-VCS-Directories: sys-auth/sssd/files X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131201171054.ECCCB2004B@flycatcher.gentoo.org> Date: Sun, 1 Dec 2013 17:10:54 +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: 5751da0e-bc65-4bab-9df7-dd4e0daa3645 X-Archives-Hash: e2bbd74486131407df3fee6774ce075c hwoarang 13/12/01 17:10:54 Added: sssd-1.9.6-fix-init.patch Log: Version bump. Remove nscd dependency from the init script. Bug #491608 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!) Revision Changes Path 1.1 sys-auth/sssd/files/sssd-1.9.6-fix-init.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/files/sssd-1.9.6-fix-init.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/sssd/files/sssd-1.9.6-fix-init.patch?rev=1.1&content-type=text/plain Index: sssd-1.9.6-fix-init.patch =================================================================== A couple of changes are necessary to make sssd work better on Gentoo Linux systems. - login manager can use sssd for login. Therefore it's necessary to adjust the dependencies of the script to use 'xdm' if it is available. - We need to send the debug output to files instead of stderr. Signed-off-by: Markos Chandras Index: sssd-1.9.6/src/sysv/gentoo/sssd =================================================================== --- sssd-1.9.6.orig/src/sysv/gentoo/sssd +++ sssd-1.9.6/src/sysv/gentoo/sssd @@ -2,12 +2,12 @@ depend(){ need localmount netmount clock - use syslog + use syslog xdm } start(){ ebegin "Starting sssd" - start-stop-daemon --start --exec ${exec_prefix}/sbin/sssd -- -D + start-stop-daemon --start --exec ${exec_prefix}/sbin/sssd -- -Df eend ${?} }