| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/
|
|
|
|
|
|
|
|
|
|
|
| |
Carmelo reports that EliminarImagenCache (Delete image from cache)
command does not work. The image remains in place after the execution
of the command.
This command is actually a wrapper of the command EjecutarScript
(POST /shell) with a different ID. Since gestor_Comandos.php did not
expect a different ID, EliminarImagenCache did not work.
This commit changes the behaviour of gestor_Comandos.php to handle
the EliminarImagenCache ID and treat it as EjecutarScript.
|
| |
|
|
|
|
|
|
|
|
| |
"pintaConfiguraciones" table
Remote Cloning Wizard shows partition target list as a query to the "pintaConfiguraciones" table.
Code from the other Wizards is reused.
|
|
|
|
|
|
|
|
| |
Remote Cloning Wizard shows "partition configuration table" before the form.
The table shows the content of the images in the cache
Code from the other Wizards is reused.
|
|
|
|
|
|
|
| |
The multidimensional array that is generated from the configurations doubled the entries.
The multidimensional array is changed to a simple array where the index is the string composed of disk id part id
The select "idpartition" form will have the array index as text.
|
|
|
|
|
|
| |
The netboot web form does not correctly filter the computer group scope.
There is a BUG in the "case" to filter the scopes.
The file is boot_grub4dos.php
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Irina reports that the Wake on Lan command does not work in queued
commands.
This bug appeared when we fixed duplicated command execution when added
to the queue (ccb862b). It is caused because the client needs to be ON
to ask itself for the queued command, but the WoL command can not work
this way because the client is OFF.
This commit changes the behaviour of gestor_Comandos.php to always send
the WoL command immediately.
|
| |
|
|
|
|
| |
unit with subdirectory separated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Irina reports that the Wake on Lan command does not work in procedures.
The client/computer does not turn on, causing that any of the other
commands are executed.
This bug appears when we adapt the procedures and tasks to work with the
new API REST of the ogAdmServer. It is caused because the client needs
to be on to ask itself for the pending commands, but the WoL command can
not work this way because the client is off.
This commit changes the behaviour of recorreProcedimientos to send the
WoL command without the client has to ask.
|
| |
|
| |
|
| |
|
|
|
|
| |
operating system is detected.
|
| |
|
|
|
|
| |
`jsonResponseNow` to avoid HTTP error 500 and redefine some log messages.
|
| |
|
|
|
|
|
|
|
|
| |
This patch fixes duplicated command execution by running queue scheduler instead
of directly calling the command's REST API function.
If command is already queued, then execute pending commands. Otherwise,
invoke the OgAdmServer REST API.
|
|
|
|
| |
colon characters.
|
|
|
|
| |
system is detected.
|
|
|
|
| |
This patch renames the setup command to avoid semantic confusion.
|
| |
|
|
|
|
| |
/ous/:ouid/labs/:labid/clients/:clntid/status` when a client has never connected to the server.
|
| |
|
|
|
|
|
| |
This patch fixes run script command as it now uses REST API instead of
SocketHidra.
|
|
|
|
|
| |
This patch removes all remaining references to SocketHidra. The existing
code uses the REST API ogAdmServer.
|
|
|
|
| |
This patch removes files that are dead code and that also use SocketHidra.
|
|
|
|
|
| |
There are no cases in which gestor_tareas.php is called with $op_ejecucion as
an option. Remove this function.
|
|
|
|
|
|
|
|
| |
This patch removes the possibility of commands being executed using SocketHidra
and replaces it by the calls to the REST API.
It also prevents commands from being executed when they are intended to be added
to a task or scheduled.
|
|
|
|
| |
computers is selected.
|
|
|
|
|
|
| |
This patch implements run/schedule in the set of available PHP functions.
It also replaces old SocketHidra commands by run/schedule in
gestor_colasacciones.php and gestor_ejecutaracciones.php.
|
|
|
|
|
|
|
|
| |
This patch fixes an SQL query bug when trying to upate the end date in the
'acciones' table. The value of 'fechahorafin' cannot be NULL according to the
table definition.
This bug was introduced in 3ec149cb1 so it has been broken for 9 years.
|
| |
|
|
|
|
| |
access server (UDS).
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This patch removes asistentes gestor_Comandos.php. Asistentes now uses
the REST API.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
This commit changes restfunctions.php to read the API token of
ogAmdServer from ogAdmRepo.cfg to ogAdmServer.cfg. This way it avoids
possible communication errors if ogAdmRepo.cfg and ogAdmServer.cfg are
desynced.
In order to restfuntions.php can read ogAdmServer.cfg this commit
also changes the permissions of the file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch adds the parameters "disk" and "partition" to
POST "software" command. This way the client can create a software
profile without failure.
New request:
POST /software
{
"clients":[
"192.168.56.12"
],
"disk":"1",
"partition":"1"
}
Reply:
200 OK
|
|
|
|
| |
SocketHidra command has been replaced by POST image/restore/incremental.
|
|
|
|
| |
SocketHidra command has been replaced by POST "image/create/incremental".
|
|
|
|
| |
bacula Director.
|
|
|
|
| |
SocketHidra command has been replaced by POST image/restore/basic.
|
| |
|
|
|
|
| |
SocketHidra command has been replaced by POST image/create/basic.
|
|
|
|
| |
SocketHidra configurar has been replaced by POST image/setup.
|
|
|
|
|
| |
Update restore_image() in restfunctions.php to use OG_REST_PARAM_ID
constant.
|