#11881 the lts_name token is set empty
This commit is contained in:
parent
1669859f03
commit
ec738436eb
|
@ -222,7 +222,7 @@ INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `descri
|
||||||
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (42,9,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (42,9,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
||||||
|
|
||||||
UPDATE tconfig
|
UPDATE tconfig
|
||||||
SET value = null
|
SET value = ''
|
||||||
WHERE token = 'lts_name';
|
WHERE token = 'lts_name';
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
|
|
@ -152,7 +152,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
||||||
('gotty', '/usr/bin/gotty'),
|
('gotty', '/usr/bin/gotty'),
|
||||||
('custom_module_units', '{"bytes":"bytes","entries":"entries","files":"files","hits":"hits","sessions":"sessions","users":"users","ºC":"ºC","ºF":"ºF"}'),
|
('custom_module_units', '{"bytes":"bytes","entries":"entries","files":"files","hits":"hits","sessions":"sessions","users":"users","ºC":"ºC","ºF":"ºF"}'),
|
||||||
('server_unique_identifier', replace(uuid(),'-','')),
|
('server_unique_identifier', replace(uuid(),'-','')),
|
||||||
('lts_name', 'Renaissance');
|
('lts_name', '');
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
|
@ -2729,7 +2729,3 @@ INSERT INTO `tsca` VALUES (29673,'Ensure sudo log file exist
|
||||||
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (41,1,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (41,1,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
||||||
|
|
||||||
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (42,9,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) VALUES (42,9,'Security','Hardening plugin for security compliance analysis','','ID;STATUS','',0,2);
|
||||||
|
|
||||||
UPDATE tconfig
|
|
||||||
SET value = null
|
|
||||||
WHERE token = 'lts_name';
|
|
Loading…
Reference in New Issue