@@ -609,15 +609,29 @@ def python_helper(self, name: str) -> PythonHelper:
609
609
helper_file = caller_file .parent / name
610
610
return PythonHelper (self , helper_file )
611
611
612
- def omd (self , mode : str , * args : str ) -> int :
612
+ def omd (self , mode : str , * args : str , check : bool = False ) -> int :
613
+ """run the "omd" command with the given mode and arguments.
614
+
615
+ Args:
616
+ mode (str): The mode of the "omd" command. e.g. "status", "restart", "start", "stop"
617
+ args (str): More (optional) arguments to the "omd" command.
618
+ check (bool, optional): Run cmd as check/strict - raise Exception on rc!=0.
619
+
620
+ raises:
621
+ subprocess.CalledProcessError: If check is True and the return code is not 0.
622
+ Will also contain the output of the command in the exception message.
623
+
624
+ Returns:
625
+ int: return code of the "omd" command
626
+ """
613
627
cmd = ["omd" , mode ] + list (args )
614
628
logger .info ("Executing: %s" , subprocess .list2cmdline (cmd ))
615
629
completed_process = self .run (
616
630
cmd ,
617
631
capture_output = False ,
618
632
stdout = subprocess .PIPE ,
619
633
stderr = subprocess .STDOUT ,
620
- check = False ,
634
+ check = check ,
621
635
)
622
636
logger .debug ("Exit code: %d" , completed_process .returncode )
623
637
if completed_process .stdout :
@@ -1015,7 +1029,8 @@ def rm(self, site_id: str | None = None) -> None:
1015
1029
def start (self ) -> None :
1016
1030
if not self .is_running ():
1017
1031
logger .info ("Starting site" )
1018
- assert self .omd ("start" ) == 0
1032
+ # start the site and ensure it's fully running (including all services)
1033
+ assert self .omd ("start" , check = True ) == 0
1019
1034
# print("= BEGIN PROCESSES AFTER START ==============================")
1020
1035
# self.execute(["ps", "aux"]).wait()
1021
1036
# print("= END PROCESSES AFTER START ==============================")
@@ -1989,6 +2004,12 @@ def get_site_factory(
1989
2004
version : CMKVersion | None = None ,
1990
2005
fallback_branch : str | Callable [[], str ] | None = None ,
1991
2006
) -> SiteFactory :
2007
+ """retrieves a correctly parameterized SiteFactory object
2008
+
2009
+ This will be either
2010
+ * the default one (daily) or
2011
+ * as parameterized from the environment
2012
+ """
1992
2013
version = version or version_from_env (
1993
2014
fallback_version_spec = CMKVersion .DAILY ,
1994
2015
fallback_edition = Edition .CEE ,
0 commit comments