Am Dienstag, 19. April 2005 11:58 schrieb Alfred Isele:
Hello Daniel,
find an example here:
<users config:type="list"> <user> <encrypted config:type="boolean">true</encrypted> <user_password>zfweXXD7/g8cs</user_password> <username>root</username> </user> <user> <encrypted config:type="boolean">false</encrypted> <user_password>passwordX</user_password> <username>userX</username> </user> </users>
If you want the root password to be encrypted (like in the example above), set a password for root and then take the encrypted version from the respective entry in /etc/shadow. As for the LDAP problem, I have no idea. The LDAP autoinstallation is broken. This is a known issue. I remember a threat about this recently. LDAP is activated, but the server name and base dn are not set.
You can solve that issue with a postinstall script like: ----------------------------------- <script> <filename>services.sh</filename> <interpreter>shell</interpreter> <location></location> <source><![CDATA[#!/bin/bash # LDAP: start_tls kann der Server nicht. /usr/bin/sed "s/^ssl.start_tls/ssl\tno/" -i /etc/ldap.conf # LDAP: server und basedn einstellen /sbin/yast2 ldap configure server="192.168.xxx.xxx" base="dc=xxxxxxxx,c=xx" # identd: Service starten funktioniert nicht. /sbin/insserv identd ]]></source> </script> ----------------------------------- Bye, Frank