-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linux air gapped environments. Add support for PowerShell 7.2 in order to allow running on SDDC Manager. Change version for release. Fix Versions on the index page Signed-off-by: Ivaylo Ivanov <iivanov@vmware.com> Co-Authored-By: Ryan Johnson <ryan.johnson@broadcom.com>
- Loading branch information
1 parent
ebdb0be
commit 0596e20
Showing
9 changed files
with
32 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Release History | ||
|
||
## v1.4.1 | ||
## v1.5.0 | ||
|
||
> Release Date: Unreleased | ||
> Release Date: 2024-10-02 | ||
Bugfix: | ||
|
||
|
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
scp -r /home/modules/* username@remote_host:/home/lab/.local/share/powershell/Modules/ | ||
~/.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,3 @@ | ||
cd ~/.local/share/powershell/Modules/ | ||
tar -zxvf OfflineModules.tar.gz | ||
rm -rf OfflineModules.tar.gz |
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,2 @@ | ||
$DownloadDir = "~/DownloadModules" | ||
mkdir $DownloadDir |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
Save-Module -Name VMware.PowerCLI -MinimumVersion 13.3.0 -Path /home/modules -Repository PSGallery | ||
Save-Module -Name PowerVCF -MinimumVersion 2.4.1 -Path /home/modules -Repository PSGallery | ||
Save-Module -Name PowerValidatedSolutions -MinimumVersion 2.11.0 -Path /home/modules -Repository PSGallery | ||
Save-Module -Name Posh-SSH -MinimumVersion 3.0.8 -Path /home/modules -Repository PSGallery | ||
Save-Module -Name VMware.CloudFoundation.PowerManagement -Path /home/modules -Repository PSGallery | ||
Save-Module -Name VMware.PowerCLI -Path $DownloadDir -Repository PSGallery | ||
Save-Module -Name PowerVCF -Path $DownloadDir -Repository PSGallery | ||
Save-Module -Name Posh-SSH -Path $DownloadDir -Repository PSGallery | ||
Save-Module -Name PowerValidatedSolutions -Path $DownloadDir -Repository PSGallery | ||
Save-Module -Name VMware.CloudFoundation.PowerManagement -Path $DownloadDir -Repository PSGallery | ||
cd $DownloadDir | ||
tar -zcvf OfflineModules.tar.gz * |