GuestPoliciesRecipeInstallStepScriptRun

data class GuestPoliciesRecipeInstallStepScriptRun(val allowedExitCodes: List<Int>? = null, val interpreter: String? = null, val script: String)

Constructors

Link copied to clipboard
constructor(allowedExitCodes: List<Int>? = null, interpreter: String? = null, script: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val allowedExitCodes: List<Int>? = null

Return codes that indicate that the software installed or updated successfully. Behaviour defaults to 0

Link copied to clipboard
val interpreter: String? = null

The script interpreter to use to run the script. If no interpreter is specified the script is executed directly, which likely only succeed for scripts with shebang lines. Possible values are: SHELL, POWERSHELL.

Link copied to clipboard

The shell script to be executed.