-
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.
- Update version for release. - Added support for PowerShell 7.2 to allow running on SDDC Manager. - Updated documentation for installation on Linux in disconnected environments. - Fixed module dependency versions in the documentation. Signed-off-by: Ivaylo Ivanov <iivanov@vmware.com> Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
- Loading branch information
1 parent
ebdb0be
commit 8c409f1
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 * |