diff --git a/LICENSE b/LICENSE index ffb48fbc..3c0c5de9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright 2023 Broadcom. All Rights Reserved. +Copyright 2023-2024 Broadcom. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/Makefile b/Makefile index 6413dff9..d752dd74 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 docs-install: diff --git a/NOTICE b/NOTICE index df2430b2..1d3226da 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ PowerShell Module for VMware Validated Solutions -Copyright 2023 Broadcom. All Rights Reserved. +Copyright 2023-2024 Broadcom. All Rights Reserved. This product is licensed to you under the BSD-2 license (the "License"). You may not use this product except in compliance with the BSD-2 License. diff --git a/PowerValidatedSolutions.psd1 b/PowerValidatedSolutions.psd1 index 04275a15..3acd68f6 100644 --- a/PowerValidatedSolutions.psd1 +++ b/PowerValidatedSolutions.psd1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # Module manifest for module 'PowerValidatedSolutions' @@ -11,7 +11,7 @@ RootModule = 'PowerValidatedSolutions.psm1' # Version number of this module. - ModuleVersion = '2.8.0.1037' + ModuleVersion = '2.8.0.1038' # Supported PSEditions # CompatiblePSEditions = @() @@ -26,7 +26,7 @@ CompanyName = 'Broadcom' # Copyright statement for this module - Copyright = 'Copyright 2023 Broadcom. All Rights Reserved.' + Copyright = 'Copyright 2023-2024 Broadcom. All Rights Reserved.' # Description of the functionality provided by this module Description = 'PowerShell Module for VMware Validated Solutions' diff --git a/PowerValidatedSolutions.psm1 b/PowerValidatedSolutions.psm1 index f8bf0cc0..5a80d8df 100644 --- a/PowerValidatedSolutions.psm1 +++ b/PowerValidatedSolutions.psm1 @@ -1,16 +1,14 @@ -# PowerShell Module for VMware Validated Solutions for VMware Cloud Foundation -# Contributions are welcome. https://github.com/vmware/power-validated-solutions-for-cloud-foundation/blob/main/CONTRIBUTING.md +# Copyright 2023-2024 Broadcom. All Rights Reserved. +# SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -### Note -# It is recommended you don't use it for any production environment without testing extensively! - -# Enable communication with self signed certs when using Powershell Core. If you require all communications to be secure -# and do not wish to allow communication with self-signed certificates remove lines 15-38 before importing the module. +# Enable communication with self-signed certificates when using Powershell Core. If you require all communications +# to be secure and do not wish to allow communication with self-signed certificates, remove lines 17-36 before +# importing the module. if ($PSEdition -eq 'Core') { $PSDefaultParameterValues.Add("Invoke-RestMethod:SkipCertificateCheck", $true) diff --git a/README.md b/README.md index 2e225dc3..c334155f 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ You can also start a discussion on the GitHub [discussions][gh-discussions] area ## License -Copyright 2023 Broadcom. All Rights Reserved. +Copyright 2023-2024 Broadcom. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/SampleScripts/dri/driConfigureSupervisorCluster.ps1 b/SampleScripts/dri/driConfigureSupervisorCluster.ps1 index a48217bb..3a8f77ad 100644 --- a/SampleScripts/dri/driConfigureSupervisorCluster.ps1 +++ b/SampleScripts/dri/driConfigureSupervisorCluster.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/dri/driDeployTanzuCluster.ps1 b/SampleScripts/dri/driDeployTanzuCluster.ps1 index 178aef53..7ece010f 100644 --- a/SampleScripts/dri/driDeployTanzuCluster.ps1 +++ b/SampleScripts/dri/driDeployTanzuCluster.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/dri/driUndoDeployment.ps1 b/SampleScripts/dri/driUndoDeployment.ps1 index b340830a..a205633f 100644 --- a/SampleScripts/dri/driUndoDeployment.ps1 +++ b/SampleScripts/dri/driUndoDeployment.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/iam/iamSolutionInteroperability.ps1 b/SampleScripts/iam/iamSolutionInteroperability.ps1 index 7cc0e04b..1b865021 100644 --- a/SampleScripts/iam/iamSolutionInteroperability.ps1 +++ b/SampleScripts/iam/iamSolutionInteroperability.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/ila/ilaSolutionInteroperability.ps1 b/SampleScripts/ila/ilaSolutionInteroperability.ps1 index e18d09ff..f3d7978c 100644 --- a/SampleScripts/ila/ilaSolutionInteroperability.ps1 +++ b/SampleScripts/ila/ilaSolutionInteroperability.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/ila/ilaUndoSolutionInteroperability.ps1 b/SampleScripts/ila/ilaUndoSolutionInteroperability.ps1 index 45cfe486..450ede04 100644 --- a/SampleScripts/ila/ilaUndoSolutionInteroperability.ps1 +++ b/SampleScripts/ila/ilaUndoSolutionInteroperability.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE diff --git a/SampleScripts/iom/iomSolutionInteroperability.ps1 b/SampleScripts/iom/iomSolutionInteroperability.ps1 index fd98074f..e4ab45d5 100644 --- a/SampleScripts/iom/iomSolutionInteroperability.ps1 +++ b/SampleScripts/iom/iomSolutionInteroperability.ps1 @@ -1,4 +1,4 @@ -# Copyright 2023 Broadcom. All Rights Reserved. +# Copyright 2023-2024 Broadcom. All Rights Reserved. # SPDX-License-Identifier: BSD-2 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE