ACC SHELL

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

/**
 * File:	clients/inst_check_memsize.ycp
 * Package:	Installation
 * Summary:	Checking whether system has enough memory (bugzilla #305554)
 * Authors:	Lukas Ocilka <locilka@suse.cz>
 *
 * $Id: inst_check_memsize.ycp 57028 2009-04-29 10:58:09Z lslezak $
 *
 */

{
    include "add-on/misc.ycp";

    // Memory is low
    if (HasInsufficientMemory()) {
	// User wants to continue
	if (ContinueIfInsufficientMemory ()) {
	    return `continue;
	// User wants to skip
	} else {
	    return `skip;
	}
    }

    // Enough memory
    return `continue;
}

ACC SHELL 2018