Hi,
Is it possible the bug is still not fixed?
The new init script checks for a _directory_ named /etc/defaults/sssd.
The correct file to source is /etc/default/sssd (default, not defaultS)
and is a file (not a directory).
In attach you can find a patch which should solve this.
Regards,
Rik
--
Rik Theys
Senior System Engineer
KU Leuven - Dept. Elektrotechniek (ESAT)
Kasteelpark Arenberg 10
B-3001 LEUVEN - HEVERLEE
Tel.: +32(0)16/32.11.07
----------------------------------------------------------------
<<Any errors in spelling, tact or fact are transmission errors>>
--- sssd.orig 2010-08-08 14:45:56.000000000 +0200
+++ sssd 2010-08-08 14:48:14.000000000 +0200
@@ -32,8 +32,8 @@
# and status_of_proc is working.
. /lib/lsb/init-functions
-if [ -d /etc/defaults/sssd ] ; then
- . /etc/defaults/sssd
+if [ -f /etc/default/sssd ] ; then
+ . /etc/default/sssd
fi
initdmain() {