Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/sssd/files: sssd-1.9.6-fix-init.patch
Date: Sun, 01 Dec 2013 17:11:02
Message-Id: 20131201171054.ECCCB2004B@flycatcher.gentoo.org
1 hwoarang 13/12/01 17:10:54
2
3 Added: sssd-1.9.6-fix-init.patch
4 Log:
5 Version bump. Remove nscd dependency from the init script. Bug #491608
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
8
9 Revision Changes Path
10 1.1 sys-auth/sssd/files/sssd-1.9.6-fix-init.patch
11
12 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
13 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
14
15 Index: sssd-1.9.6-fix-init.patch
16 ===================================================================
17 A couple of changes are necessary to make sssd work better on Gentoo Linux
18 systems.
19
20 - login manager can use sssd for login. Therefore it's necessary to adjust
21 the dependencies of the script to use 'xdm' if it is available.
22 - We need to send the debug output to files instead of stderr.
23
24 Signed-off-by: Markos Chandras <hwoarang@g.o>
25
26 Index: sssd-1.9.6/src/sysv/gentoo/sssd
27 ===================================================================
28 --- sssd-1.9.6.orig/src/sysv/gentoo/sssd
29 +++ sssd-1.9.6/src/sysv/gentoo/sssd
30 @@ -2,12 +2,12 @@
31
32 depend(){
33 need localmount netmount clock
34 - use syslog
35 + use syslog xdm
36 }
37
38 start(){
39 ebegin "Starting sssd"
40 - start-stop-daemon --start --exec ${exec_prefix}/sbin/sssd -- -D
41 + start-stop-daemon --start --exec ${exec_prefix}/sbin/sssd -- -Df
42 eend ${?}
43 }