Skip to content
Snippets Groups Projects
Commit 7945142d authored by rswindell's avatar rswindell
Browse files

Support "requires_service" key which specifies the name of a service (e.g.

"JSON") that must be installed and enabled for the external program to be
installed. This is inteded for use by the various .js "doors" that rely on
json-service.js to function. If the specified service isn't installed and
enabled, the install won't continue.
parent fd8a3476
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,7 @@
// note = note to sysop displayed before installation
// prompt = confirmation prompt (or false if no prompting)
// required = if true, this item must be installed to continue
// requires_service = name of a service that must be enabled for this item
//
// Notes:
//
......@@ -112,6 +113,18 @@ function install_xtrn_item(cnf, type, desc, item)
return false;
}
if(item.requires_service) {
var services_ini = new File(file_cfgname(system.ctrl_dir, "services.ini"));
if(!services_ini.open("r"))
return "Error " + services_ini.error + " opening " + services_ini.name;
var enabled = services_ini.iniGetObject(item.requires_service)
&& services_ini.iniGetValue(item.requires_service, "enabled", true);
services_ini.close();
if(!enabled)
return "Service '" + item.requires_service
+ "' must first be installed and enabled in " + services_ini.name;
}
while (!item.code && !aborted()
|| (find_code(cnf[type], item.code) >= 0
&& print(desc + " Internal Code (" + item.code + ") already exists!")))
......@@ -178,7 +191,7 @@ function install(ini_fname)
{
ini_fname = fullpath(ini_fname);
var installed = 0;
if(!options.auto) {
if(!options.auto || options.debug) {
var banner = "* Installing " + ini_fname + " use Ctrl-C to abort *";
var line = "";
for (var i = 0; i < banner.length; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment