fix mr update for content pandora_enterprise#13231

This commit is contained in:
daniel 2024-05-10 14:37:25 +02:00
parent 20f63042a7
commit f54c68b5c2
1 changed files with 6 additions and 6 deletions

View File

@ -7771,13 +7771,13 @@ UPDATE `tdiscovery_apps` SET `version` = '1.5' WHERE `short_name` = 'pandorafms.
DELETE FROM tevent_response WHERE name = 'Create incident from event';
UPDATE tconfig_os SET `name` = 'Web Server' WHERE `id_os` = 12;
UPDATE `tncm_script` SET content='set cli pager off \n
capture:show system info | match app-version:\n
sleep:1
exit \n'
WHERE id=24;
UPDATE `tncm_script` SET `content` ='set cli pager off \n
capture:show system info | match app-version:\n
sleep:1
exit \n'
WHERE `content`='set cli pager off \n
capture:show system info | match app-version:\n
sleep:1 
expect:app-version:\s*
exit \n';
UPDATE `tncm_script` SET content='expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
quit\n
expect:root@%
exit\n'
WHERE id=17;
UPDATE `tncm_script` SET `content` ='expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
quit\n
expect:root@%
exit\n'
WHERE `content`= 'expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
capture: \n
quit\n
expect:root@%
exit\n';
UPDATE `tncm_script` SET content='expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
quit\n
expect:root@%
exit\n'
WHERE id=20;
UPDATE `tncm_script` SET `content` ='expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
quit\n
expect:root@%
exit\n'
WHERE `content`='expect:root@%
cli\n
expect:root>
capture:show version|match Junos:\n
capture: \n
quit\n
expect:root@%
exit\n';
COMMIT;