forked from AttuneOps/VMWare-ESXi-APIs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AUSTA-278: Group step "Perform Deploy ESXi Drivers to a Drop Director…
…y with Windows Worker" is now a deploy followed by a move. (AttuneOps#20) Co-authored-by: Default User <default@email.com>
- Loading branch information
Showing
8 changed files
with
136 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
steps/deployesxidriverstoadropdirectorywithwindowsworker/README.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Deploys ESXi drivers to `/c$/software/drivers-{newVmNode.fqn}`. |
6 changes: 3 additions & 3 deletions
6
...pdirectorywithwindowsworker/metadata.json → ...sxidriverswithwindowsworker/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
steps/moveesxidriverstodropdirectorywithwindowsworker/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"actionOnStepFail": null, | ||
"enabled": true, | ||
"externalUuid4": "a0a9e831-ce56-49fe-9e64-0e00876c4256", | ||
"interpreter": 2, | ||
"interpreterCommand": "", | ||
"interpreterScriptExt": null, | ||
"interpreterScriptSyntax": "", | ||
"key": "moveesxidriverstodropdirectorywithwindowsworker", | ||
"name": "Move ESXi Drivers to Drop Directory with Windows Worker", | ||
"osCredKey": "automationworkerwindowsuseradministrator", | ||
"serverKey": "automationworkerwindowsnode", | ||
"successExitCode": 0, | ||
"timeout": 120, | ||
"type": "com.servertribe.attune.tuples.StepWinRmTuple" | ||
} |
5 changes: 5 additions & 0 deletions
5
steps/moveesxidriverstodropdirectorywithwindowsworker/script.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$CURRENT_PATH = "C:\software\drivers-{newVmNode.fqn}" | ||
$DEST_FOLDER = "{automationWorkerWindowsBaseDirectory}" | ||
|
||
Write-Host "CURRENT_PATH=${CURRENT_PATH}\n DEST_FOLDER=${DEST_FOLDER}" | ||
Move-Item -Path "${CURRENT_PATH}" -Destination "${DEST_FOLDER}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters