Merge branch 'ent-4772-omnishell' of https://brutus.artica.lan:8081/artica/pandorafms into ent-4772-omnishell
This commit is contained in:
commit
26f40bbeec
|
@ -6,4 +6,29 @@ INSERT INTO `ttipo_modulo` VALUES
|
||||||
(36,'remote_cmd_string', 10, 'Remote execution, alphanumeric data', 'mod_remote_cmd_string.png'),
|
(36,'remote_cmd_string', 10, 'Remote execution, alphanumeric data', 'mod_remote_cmd_string.png'),
|
||||||
(37,'remote_cmd_inc', 10, 'Remote execution, incremental data', 'mod_remote_cmd_inc.png');
|
(37,'remote_cmd_inc', 10, 'Remote execution, incremental data', 'mod_remote_cmd_inc.png');
|
||||||
|
|
||||||
|
CREATE TABLE `tremote_command` (
|
||||||
|
`id` SERIAL,
|
||||||
|
`name` varchar(150) NOT NULL,
|
||||||
|
`timeout` int(10) unsigned NOT NULL default 30,
|
||||||
|
`retries` int(10) unsigned NOT NULL default 3,
|
||||||
|
`preconditions` text,
|
||||||
|
`script` text,
|
||||||
|
`postconditions` text,
|
||||||
|
`utimestamp` int(20) unsigned NOT NULL default 0,
|
||||||
|
`id_group` int(10) unsigned NOT NULL default 0,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
CREATE TABLE `tremote_command_target` (
|
||||||
|
`rcmd_id` SERIAL,
|
||||||
|
`id_agente` int(10) unsigned NOT NULL,
|
||||||
|
`utimestamp` int(20) unsigned NOT NULL default 0,
|
||||||
|
`stdout` text,
|
||||||
|
`stderr` text,
|
||||||
|
`errorlevel` int(10) unsigned NOT NULL default 0,
|
||||||
|
PRIMARY KEY (`rcmd_id`),
|
||||||
|
FOREIGN KEY (`rcmd_id`) REFERENCES `tremote_command`(`id`)
|
||||||
|
ON UPDATE CASCADE ON DELETE CASCADE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
|
@ -1,28 +0,0 @@
|
||||||
START TRANSACTION;
|
|
||||||
|
|
||||||
CREATE TABLE `tremote_command` (
|
|
||||||
`id` SERIAL,
|
|
||||||
`name` varchar(150) NOT NULL,
|
|
||||||
`timeout` int(10) unsigned NOT NULL default 30,
|
|
||||||
`retries` int(10) unsigned NOT NULL default 3,
|
|
||||||
`preconditions` text,
|
|
||||||
`script` text,
|
|
||||||
`postconditions` text,
|
|
||||||
`utimestamp` int(20) unsigned NOT NULL default 0,
|
|
||||||
`id_group` int(10) unsigned NOT NULL default 0,
|
|
||||||
PRIMARY KEY (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
CREATE TABLE `tremote_command_target` (
|
|
||||||
`rcmd_id` SERIAL,
|
|
||||||
`id_agente` int(10) unsigned NOT NULL,
|
|
||||||
`utimestamp` int(20) unsigned NOT NULL default 0,
|
|
||||||
`stdout` text,
|
|
||||||
`stderr` text,
|
|
||||||
`errorlevel` int(10) unsigned NOT NULL default 0,
|
|
||||||
PRIMARY KEY (`rcmd_id`),
|
|
||||||
FOREIGN KEY (`rcmd_id`) REFERENCES `tremote_command`(`id`)
|
|
||||||
ON UPDATE CASCADE ON DELETE CASCADE
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
COMMIT;
|
|
|
@ -1247,7 +1247,7 @@ ALTER TABLE titem MODIFY `source_data` int(10) unsigned;
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('big_operation_step_datos_purge', '100');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('big_operation_step_datos_purge', '100');
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('small_operation_step_datos_purge', '1000');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('small_operation_step_datos_purge', '1000');
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('days_autodisable_deletion', '30');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('days_autodisable_deletion', '30');
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('MR', 34);
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('MR', 33);
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_docs_logo', 'default_docs.png');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_docs_logo', 'default_docs.png');
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_support_logo', 'default_support.png');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_support_logo', 'default_support.png');
|
||||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_logo_white_bg_preview', 'pandora_logo_head_white_bg.png');
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_logo_white_bg_preview', 'pandora_logo_head_white_bg.png');
|
||||||
|
|
|
@ -109,7 +109,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
||||||
('custom_report_front_logo', 'images/pandora_logo_white.jpg'),
|
('custom_report_front_logo', 'images/pandora_logo_white.jpg'),
|
||||||
('custom_report_front_header', ''),
|
('custom_report_front_header', ''),
|
||||||
('custom_report_front_footer', ''),
|
('custom_report_front_footer', ''),
|
||||||
('MR', 34),
|
('MR', 33),
|
||||||
('identification_reminder', 1),
|
('identification_reminder', 1),
|
||||||
('identification_reminder_timestamp', 0),
|
('identification_reminder_timestamp', 0),
|
||||||
('current_package_enterprise', '741'),
|
('current_package_enterprise', '741'),
|
||||||
|
|
Loading…
Reference in New Issue