-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding documentation to install modules and dependencies in a air-gapped environment. Signed-off-by: Jared Burns <burnsja@vmware.com>
- Loading branch information
1 parent
d0bb763
commit d77620a
Showing
7 changed files
with
70 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
scp -r /home/modules/* username@remote_host:/home/lab/.local/share/powershell/Modules/ |
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 @@ | ||
Copy-Item -Path F:\Module\* -Destination '\\<destination_host>\C$\Program Files\WindowsPowerShell\Modules\' -Recurse |
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 @@ | ||
Import-Module -Name VMware.PowerCLI | ||
Import-Module -Name VMware.vSphere.SsoAdmin | ||
Import-Module -Name PowerVCF | ||
Import-Module -Name PowerValidatedSolutions | ||
Import-Module -Name VMware.CloudFoundation.PasswordManagement |
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 @@ | ||
mkdir /home/modules |
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 @@ | ||
Save-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Path /home/modules | ||
Save-Module -Name VMware.PowerCLI -MinimumVersion 13.0.0 -Path /home/modules | ||
Save-Module -Name PowerVCF -MinimumVersion 2.4.0 -Path /home/modules | ||
Save-Module -Name PowerValidatedSolutions -MinimumVersion 2.6.0 -Path /home/modules | ||
Save-Module -Name VMware.CloudFoundation.PasswordManagement -Path /home/modules |
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 @@ | ||
Save-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Path F:\Module\ | ||
Save-Module -Name VMware.PowerCLI -MinimumVersion 13.0.0 -Path F:\Module\ | ||
Save-Module -Name PowerVCF -MinimumVersion 2.4.0 -Path F:\Module\ | ||
Save-Module -Name PowerValidatedSolutions -MinimumVersion 2.6.0 -Path F:\Module\ | ||
Save-Module -Name VMware.CloudFoundation.PasswordManagement -Path F:\Module\ |