summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/tftputils.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/includes/tftputils.php')
-rw-r--r--admin/WebConsole/includes/tftputils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/WebConsole/includes/tftputils.php b/admin/WebConsole/includes/tftputils.php
index aca054a5..d5d857a2 100644
--- a/admin/WebConsole/includes/tftputils.php
+++ b/admin/WebConsole/includes/tftputils.php
@@ -10,6 +10,7 @@
// Ficheros de inclusiĆ³n.
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
+include_once("../includes/restfunctions.php");
// Directorio de ficheros PXE.
define("PXEDIRBIOS", "/opt/opengnsys/tftpboot/menu.lst");
@@ -97,8 +98,7 @@ function createBootMode ($cmd, $bootopt, $hostname, $lang) {
// DescripciĆ³n plantilla PXE
$description=exec("awk 'NR==1 {print $2}' ".PXEDIRBIOS."/templates/".$bootopt);
if ($description === "") $description=exec("awk 'NR==1 {print $2}' ".PXEDIRUEFI."/templates/".$bootopt);
- // Llamamos al script setclientmode
- shell_exec("export LANG=$lang $acceso; /opt/opengnsys/bin/setclientmode $description $hostname PERM");
+ set_mode($hostname, $bootopt);
}