@@ -133,6 +133,7 @@ def run_test_update(self) -> None:
133133 self ._client_tasks .install_ibex_client ()
134134 self ._system_tasks .upgrade_notepad_pp ()
135135 self ._server_tasks .setup_log_rotation ()
136+ self ._server_tasks .update_journal_parser ()
136137
137138 def remove_all_and_install_client_and_server (self ) -> None :
138139 """Either install or upgrade the ibex client and server"""
@@ -192,6 +193,7 @@ def run_instrument_install(self) -> None:
192193 self ._system_tasks .put_autostart_script_in_startup_area ()
193194 self ._python_tasks .update_script_definitions ()
194195 self ._server_tasks .setup_log_rotation ()
196+ self ._server_tasks .update_journal_parser ()
195197
196198 def run_update_icp (self ) -> None :
197199 self ._server_tasks .update_icp (self .icp_in_labview_modules ())
@@ -250,6 +252,7 @@ def run_instrument_deploy_main(self) -> None:
250252 self ._python_tasks .update_script_definitions ()
251253 self ._python_tasks .remove_instrument_script_githooks ()
252254 self ._server_tasks .setup_log_rotation ()
255+ self ._server_tasks .update_journal_parser ()
253256 self ._system_tasks .update_kafka_topics ()
254257
255258 def run_instrument_deploy_pre_stop (self ) -> None :
@@ -285,6 +288,10 @@ def run_setup_log_rotation(self) -> None:
285288 """setup_log_rotation"""
286289 self ._server_tasks .setup_log_rotation ()
287290
291+ def run_update_journal_parser (self ) -> None :
292+ """update_journal_parser"""
293+ self ._server_tasks .update_journal_parser ()
294+
288295 def run_developer_update (self ) -> None :
289296 """Update all the developer tools to latest version"""
290297 self ._mysql_tasks .install_mysql (force = False )
@@ -404,6 +411,10 @@ def run_vhd_post_install(self) -> None:
404411 UpgradeInstrument .run_setup_log_rotation ,
405412 "setup log rotation" ,
406413 ),
414+ "update_journal_parser" : (
415+ UpgradeInstrument .run_update_journal_parser ,
416+ "update journal parser" ,
417+ ),
407418 "developer_update" : (UpgradeInstrument .run_developer_update , "install latest developer tools" ),
408419 "create_vhds" : (
409420 UpgradeInstrument .run_vhd_creation ,
0 commit comments