mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 08:45:12 +02:00
agent deployment
This commit is contained in:
parent
6c79bfb135
commit
ce346bd604
@ -47,6 +47,7 @@ CREATE TABLE `tdeployment_hosts` (
|
|||||||
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
||||||
`target_agent_version_id` BIGINT UNSIGNED,
|
`target_agent_version_id` BIGINT UNSIGNED,
|
||||||
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
||||||
|
`server_ip` varchar(100) default NULL COMMENT "Where to point target agent",
|
||||||
`last_err` text,
|
`last_err` text,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
||||||
|
@ -2265,6 +2265,7 @@ CREATE TABLE `tdeployment_hosts` (
|
|||||||
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
||||||
`target_agent_version_id` BIGINT UNSIGNED,
|
`target_agent_version_id` BIGINT UNSIGNED,
|
||||||
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
||||||
|
`server_ip` varchar(100) default NULL COMMENT "Where to point target agent",
|
||||||
`last_err` text,
|
`last_err` text,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
||||||
|
@ -437,8 +437,17 @@ select:-internal-list-box {
|
|||||||
* - GLOBAL STYLES -
|
* - GLOBAL STYLES -
|
||||||
* ---------------------------------------------------------------------
|
* ---------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
.truncate {
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
.truncate:hover {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
.w120px {
|
.w120px {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
max-width: 120px;
|
||||||
}
|
}
|
||||||
.mw120px {
|
.mw120px {
|
||||||
min-width: 120px;
|
min-width: 120px;
|
||||||
|
@ -3656,6 +3656,7 @@ CREATE TABLE `tdeployment_hosts` (
|
|||||||
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
`current_agent_version` VARCHAR(100) DEFAULT '' COMMENT "String latest installed agent",
|
||||||
`target_agent_version_id` BIGINT UNSIGNED,
|
`target_agent_version_id` BIGINT UNSIGNED,
|
||||||
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
`deployed` bigint(20) NOT NULL DEFAULT 0 COMMENT "When it was deployed",
|
||||||
|
`server_ip` varchar(100) default NULL COMMENT "Where to point target agent",
|
||||||
`last_err` text,
|
`last_err` text,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
FOREIGN KEY (`id_cs`) REFERENCES `tcredential_store`(`identifier`)
|
||||||
|
@ -227,6 +227,7 @@ sub data_consumer ($$) {
|
|||||||
server_id => $server_id,
|
server_id => $server_id,
|
||||||
%{$pa_config},
|
%{$pa_config},
|
||||||
task_data => $task,
|
task_data => $task,
|
||||||
|
public_url => PandoraFMS::Config::pandora_get_tconfig_token($dbh, 'public_url', ''),
|
||||||
%cnf_extra
|
%cnf_extra
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user