ACC SHELL

Path : /usr/share/YaST2/clients/
File Upload :
Current File : //usr/share/YaST2/clients/ldap_config.ycp

/**
 * File:	clients/ldap.ycp
 * Module:	Configuration of LDAP client
 * Summary:	Manage the configuration stored in LDAP directory
 *		(e.g. user/group templates)
 * Authors:	Jiri Suchomel <jsuchome@suse.cz>
 *
 * $Id: ldap_config.ycp 18221 2004-07-27 09:34:24Z jsuchome $
 */

{
    import "Ldap";
    import "Wizard";

    include "ldap/ui.ycp";

    string param	= "";
    /* Check arguments */
    if(size(WFM::Args()) > 0 && is(WFM::Args(0), string)) {
	param = (string) WFM::Args(0);
    }
    y2debug ("param=%1", param);

    if (param != "late_dialog") {
	Wizard::CreateDialog();
        Wizard::SetDesktopIcon("ldap");
    }

    ReadDialog (); // TODO not necessary when already done...

    any ret = LDAPReadDialog ();
    if (ret != `next)
	return ret;

    if (param == "late_dialog") {
	Wizard::CreateDialog();
        Wizard::SetDesktopIcon("ldap");
    }

    ret = ModuleConfigurationDialog ();

    if (ret == `next && Ldap::ldap_modified)
    {
	// TODO maybe add question "Really Write?"
	if (Ldap::WriteLDAP (Ldap::config_modules))
	    Ldap::WriteLDAP (Ldap::templates);
    }

    Wizard::CloseDialog();

    return ret;
}

ACC SHELL 2018