Skip to content

Commit 0bccbff

Browse files
committed
Correct the license back to MIT
1 parent 8ba299e commit 0bccbff

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Update-ThisModuleManifest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ begin {
1717
# Confirm = $true
1818
Path = $strFilespecForPsd1
1919
ModuleVersion = $ModuleVersion
20-
Copyright = "Apache 2.0 License"
20+
Copyright = "MIT License"
2121
Description = "Module with the super useful functions that were previously scattered about the web by the vNugglets team (particularly, at vNugglets.com)"
2222
## some aliases, both as written, and with "VN" prefixed on them
2323
AliasesToExport = Write-Output ConnVIServer DisconnVIServer | Foreach-Object {$_; "VN$_"}

vNugglets.Utility/vNugglets.Utility.psd1

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Author = 'Matt Boren'
2727
CompanyName = 'vNugglets.com'
2828

2929
# Copyright statement for this module
30-
Copyright = 'Apache 2.0 License'
30+
Copyright = 'MIT License'
3131

3232
# Description of the functionality provided by this module
3333
Description = 'Module with the super useful functions that were previously scattered about the web by the vNugglets team (particularly, at vNugglets.com)'
@@ -66,19 +66,19 @@ RequiredModules = @('VMware.VimAutomation.Core')
6666
# FormatsToProcess = @()
6767

6868
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69-
NestedModules = @('vNuggletsUtilityMod_functions.ps1',
69+
NestedModules = @('vNuggletsUtilityMod_functions.ps1',
7070
'vNugglets_SupportingFunctions.ps1')
7171

7272
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
73-
FunctionsToExport = 'Connect-VNVIServer', 'Copy-VNVIRole', 'Disconnect-VNVIServer',
74-
'Find-VNVMWithDuplicateMACAddress', 'Get-VNInventoryType',
75-
'Get-VNNetworkClusterInfo', 'Get-VNUplinkNicForVM',
76-
'Get-VNVMByAddress', 'Get-VNVMByRDM', 'Get-VNVMByVirtualPortGroup',
77-
'Get-VNVMDiskAndRDM', 'Get-VNVMEVCInfo', 'Get-VNVMHostBrokenUplink',
78-
'Get-VNVMHostFirmwareInfo', 'Get-VNVMHostHBAWWN',
79-
'Get-VNVMHostLogicalVolumeInfo',
80-
'Get-VNVMHostNICFirmwareAndDriverInfo',
81-
'Invoke-VNEvacuateDatastore', 'Move-VNTemplateFromVMHost',
73+
FunctionsToExport = 'Connect-VNVIServer', 'Copy-VNVIRole', 'Disconnect-VNVIServer',
74+
'Find-VNVMWithDuplicateMACAddress', 'Get-VNInventoryType',
75+
'Get-VNNetworkClusterInfo', 'Get-VNUplinkNicForVM',
76+
'Get-VNVMByAddress', 'Get-VNVMByRDM', 'Get-VNVMByVirtualPortGroup',
77+
'Get-VNVMDiskAndRDM', 'Get-VNVMEVCInfo', 'Get-VNVMHostBrokenUplink',
78+
'Get-VNVMHostFirmwareInfo', 'Get-VNVMHostHBAWWN',
79+
'Get-VNVMHostLogicalVolumeInfo',
80+
'Get-VNVMHostNICFirmwareAndDriverInfo',
81+
'Invoke-VNEvacuateDatastore', 'Move-VNTemplateFromVMHost',
8282
'Update-VNTitleBarForPowerCLI'
8383

8484
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
@@ -88,7 +88,7 @@ CmdletsToExport = @()
8888
# VariablesToExport = @()
8989

9090
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
91-
AliasesToExport = 'ConnVIServer', 'VNConnVIServer', 'DisconnVIServer',
91+
AliasesToExport = 'ConnVIServer', 'VNConnVIServer', 'DisconnVIServer',
9292
'VNDisconnVIServer'
9393

9494
# DSC resources to export from this module
@@ -98,9 +98,9 @@ AliasesToExport = 'ConnVIServer', 'VNConnVIServer', 'DisconnVIServer',
9898
# ModuleList = @()
9999

100100
# List of all files packaged with this module
101-
FileList = 'vNugglets.Utility.psd1', 'vNuggletsUtilityMod.psm1',
102-
'vNuggletsUtilityMod_functions.ps1',
103-
'vNugglets_SupportingFunctions.ps1',
101+
FileList = 'vNugglets.Utility.psd1', 'vNuggletsUtilityMod.psm1',
102+
'vNuggletsUtilityMod_functions.ps1',
103+
'vNugglets_SupportingFunctions.ps1',
104104
'en-US\about_vNugglets.Utility.help.txt'
105105

106106
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.

0 commit comments

Comments
 (0)