ACC SHELL

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

/**
 * File:	clients/isdn.ycp
 * Package:	Configuration of network
 * Summary:	ISDN main file
 * Authors:	Michal Svec <msvec@suse.cz>
 *
 * $Id: isdn.ycp 40330 2007-08-17 10:55:11Z mzugec $
 *
 * Main file for ISDN configuration.
 * Uses all other files.
 */

{

textdomain "network";

/* The main () */
y2milestone("----------------------------------------");
y2milestone("ISDN module started");
import "GetInstArgs";
import "Mode";
import "CommandLine";

 include "network/isdn/wizards.ycp";


/* is this proposal or not? */
boolean propose = false;
list args = WFM::Args();
if(size(args) > 0) {
    if(is(WFM::Args(0), path) && WFM::Args(0) == .propose) {
	y2milestone("Using PROPOSE mode");
	propose = true;
    }
   // Bugzilla #269894, CommanLine "support"
   // argmap is only a map, CommandLine uses string parameters
   if (size (GetInstArgs::argmap()) == 0 && size (WFM::Args()) > 0 && !propose) {
       Mode::SetUI ("commandline");
       y2milestone ("Mode CommandLine not supported, exiting...");
       // TRANSLATORS: error message - the module does not provide command line interface
       CommandLine::Print(_("There is no user interface available for this module."));
       return nil;
   }

    else
	y2error("Bad argument for isdn: %1",WFM::Args(0));
}

/* main ui function */
any ret = nil;

if(propose) ret = ISDNAutoSequence();
else ret = ISDNSequence();
y2debug("ret == %1", ret);

/* Finish */
y2milestone("ISDN module finished");
y2milestone("----------------------------------------");
return ret;

/* EOF */
}

ACC SHELL 2018