diff --git a/qesapdeployment.html b/qesapdeployment.html index 651627df9423..284eaec1300e 100644 --- a/qesapdeployment.html +++ b/qesapdeployment.html @@ -213,12 +213,10 @@

qesap_yaml_replace

qesap_execute

-
qesap_execute(cmd => $qesap_script_cmd [, verbose => 1, cmd_options => $cmd_options] );
-cmd_options - allows to append additional qesap.py commands arguments
-like "qesap.py terraform -d"
-    Example:
-    qesap_execute(cmd => 'terraform', cmd_options => '-d') will result in:
-    qesap.py terraform -d
+
qesap_execute(
+    cmd => 'terraform',
+    logname => 'terraform_destroy.log.txt'
+    [, verbose => 1, cmd_options => $cmd_options] );
 
 Execute qesap glue script commands. Check project documentation for available options:
 https://github.com/SUSE/qe-sap-deployment
@@ -230,19 +228,19 @@ 

qesap_execute

-
CMD_OPTIONS - set of arguments for the qesap.py subcommand
+
LOGNAME - filename of the log file.
-
VERBOSE - activate verbosity in qesap.py
+
CMD_OPTIONS - set of arguments for the qesap.py subcommand
-
TIMEOUT - max expected execution time
+
VERBOSE - activate verbosity in qesap.py
-
LOGNAME - filename of the log file. This argument is optional, if not specified the log filename is internally calculated using content from CMD and CMD_OPTIONS.
+
TIMEOUT - max expected execution time
@@ -250,12 +248,11 @@

qesap_execute

qesap_execute_conditional_retry

-
qesap_execute(cmd => $qesap_script_cmd [, verbose => 1, cmd_options => $cmd_options] );
-cmd_options - allows to append additional qesap.py commands arguments
-like "qesap.py terraform -d"
-    Example:
-    qesap_execute(cmd => 'terraform', cmd_options => '-d') will result in:
-    qesap.py terraform -d
+
qesap_execute_conditional_retry(
+cmd => $qesap_script_cmd,
+error_string => 'Fatal:',
+logname => 'somefile.txt'
+[, verbose => 1, cmd_options => $cmd_options] );
 
 Execute qesap glue script commands. Check project documentation for available options:
 https://github.com/SUSE/qe-sap-deployment
@@ -279,7 +276,7 @@ 

qesap_execute_conditional_retry

-
LOGNAME - filename of the log file. This argument is optional, if not specified the log filename is internally calculated using content from CMD and CMD_OPTIONS.
+
LOGNAME - filename of the log file.