ACC SHELL

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

/**
 * File:
 *   nis.ycp
 *
 * Module:
 *   Configuration of nis
 *
 * Summary:
 *   Main file
 *
 * Authors:
 *   Dan Vesely <dan@suse.cz>
 *   Martin Vidner <mvidner@suse.cz>
 *
 * $Id: nis.ycp 50380 2008-08-26 13:19:34Z mcalmer $
 *
 * Configure ypclient via running SuSEconfig
 * Modify: /etc/rc.config
 *
 */

/***
 * <h3>Configuration of the nis</h3>
 */

/**
 * @param flag "<b>screenshots</b>"<br>
 *  <dl>
 *   <dd>uses faked data (see Nis::Fake), enables running the module
 *    as non-root. (Uses Mode::screen_shot().)
 *  </dl>
 */
{
    textdomain "nis";

    import "CommandLine";
    import "Nis";
    import "PackageSystem";
    import "RichText";

    include "nis/ui.ycp";

    any ret = `auto;

    if (!PackageSystem::CheckAndInstallPackagesInteractive (Nis::required_packages))
    {
	return ret;
    }

// --------------------------------------------------------------------------
// --------------------------------- cmd-line handlers

/**
 * Change basic configuration of NIS client
 * @param options  a list of parameters passed as args
 * @return boolean true on success
 */
define boolean NisChangeConfiguration (map options ) {

    boolean ret = false;
    string server = options["server"]:"";
    if (server != "")
    {
	Nis::SetServers (server);
	ret = true;
    }
    string domain = options["domain"]:"";
    if (domain != "")
    {
	Nis::SetDomain (domain);
	if (Nis::DomainChanged ())
	    ret = true;
    }
    if (options["automounter"]:"" == "yes" && !Nis::_start_autofs)
    {
	Nis::_start_autofs	= true;
	ret			= true;
    }
    if (options["automounter"]:"" == "no" && Nis::_start_autofs)
    {
	Nis::_start_autofs	= false;
	ret			= true;
    }
    if (options["broadcast"]:"" == "yes" && !Nis::global_broadcast)
    {
	Nis::global_broadcast	= true;
	ret			= true;
    }
    if (options["broadcast"]:"" == "no" && Nis::global_broadcast)
    {
	Nis::global_broadcast	= false;
	ret			= true;
    }
    return ret;
}


/**
 * Enable the NIS client
 * @param options  a list of parameters passed as args
 * @return boolean true on success
 */
define boolean NisEnableHandler (map options ) {

    boolean ret = NisChangeConfiguration (options);
    Nis::start = true;
    //if (Nis::GetDomain () == "" || Nis::GetServers () == "")
	//Nis::dhcp_wanted	= true;
    return true;
}

/**
 * Disable the NIS client
 * @param options  a list of parameters passed as args
 * @return boolean true on success
 */
define boolean NisDisableHandler (map options) {
    Nis::start = false;
    return true;
}

/**
 * Look for NIS servers in given domain and print them on stdout
 * @param options  a list of parameters passed as args
 * @return boolean true on success
 */
define boolean NisFindServers (map options ) {

    string domain	= options["domain"]:"";
    if (domain == "")
    {
	domain	= Nis::GetDomain ();
    }
    foreach (string server, (list<string>)
      SCR::Read (add (.net.ypserv.find, domain)), {
	CommandLine::Print (server);
    });
    return false;
}


/**
 * Print summary of basic options
 * @return boolean false
 */
define boolean NisSummaryHandler (map options ) {

    CommandLine::Print (RichText::Rich2Plain ("<br>" +
	Nis::ShortSummary () + Nis::BrItem (
	_("Automounter enabled"), Nis::_start_autofs ?  _("Yes"): _("No"))));

    return false; // do not call Write...
}

/* the command line description map */
map cmdline = $[
    "id"		: "nis",
    // translators: command line help text for Ldap client module
    "help"		: _("NIS client configuration module."),
    "guihandler"	: NormalSequence,
    "initialize"	: Nis::Read,
    "finish"		: Nis::Write,
    "actions"		: $[
	"enable" :$[
	    "handler"	: NisEnableHandler,
	    // command line help text for 'enable' action
	    "help"	: _("Enable your machine as NIS client")
	],
	"disable" :$[
	    "handler"	: NisDisableHandler,
	    // command line help text for 'disable' action
	    "help"	: _("Disable the NIS client")
	],
	"summary" :$[
	    "handler"	: NisSummaryHandler,
	    // command line help text for 'summary' action
	    "help"	: _("Configuration summary of NIS client")
	],
	"configure"	: $[ //FIXME "set" alias?
	    "handler"	: NisChangeConfiguration,
	    // command line help text for 'configure' action
	    "help"	: _("Change the global settings of NIS client")
	],
	"find"	: $[
	    "handler"	: NisFindServers,
	    // command line help text for 'find' action
	    "help"	: _("Show available NIS servers for given domain")
	],
    ],
    "options"		: $[
	"server"	:$[
	    // command line help text for the 'server' option
	    "help"	: _("NIS server name or address"),
	    "type"	: "string"
	],
	"domain"	:$[
	    // command line help text for the 'domain' option
	    "help"	: _("NIS domain"),
	    "type"	: "string"
	],
	"automounter"	:$[
	    // help text for the 'automounter' option
	    "help"	: _("Start or stop automounter"),
	    "type"	: "enum",
	    "typespec"  : [ "yes", "no" ],
	],
	"broadcast"	:$[
	    // help text for the 'broadcast' option
	    "help"	: _("Set or unset broadcast search"),
	    "type"	: "enum",
	    "typespec"  : [ "yes", "no" ],
	],
    ],
    "mappings"		: $[
	"enable"	: [ "server", "domain", "automounter", "broadcast" ],
	"disable"	: [],
	"summary"	: [],
	"configure"	: [ "server", "domain", "automounter", "broadcast" ],
	"find"		: [ "domain" ]
	// TODO:
	// more domains?
	// YPBIND_OPTIONS: delimiter??
    ]
];

ret = CommandLine::Run (cmdline);
return ret;
}

ACC SHELL 2018