mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Merge pull request #516 from Icinga:fix/removes_rootmodule_from_manifest_template
Fix: Removes RootModule from Manifest file With the new module isolation, we no longer require the `RootModule` entry for manifest files.
This commit is contained in:
commit
a7e0bbed4b
2 changed files with 0 additions and 2 deletions
|
|
@ -205,7 +205,6 @@ function New-IcingaForWindowsComponent()
|
|||
Write-IcingaForWindowsComponentManifest -Name $Name -ModuleConfig @{
|
||||
'$MODULENAME$' = ([string]::Format('Windows {0}', $Name));
|
||||
'$GUID$' = (New-Guid);
|
||||
'$ROOTMODULE$' = ([string]::Format('{0}.psm1', $ModuleName));
|
||||
'$AUTHOR$' = $Author;
|
||||
'$COMPANYNAME$' = $CompanyName;
|
||||
'$COPYRIGHT$' = $Copyright;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
@{
|
||||
ModuleVersion = '$MODULEVERSION$'
|
||||
RootModule = '$ROOTMODULE$'
|
||||
GUID = '$GUID$'
|
||||
Author = '$AUTHOR$'
|
||||
CompanyName = '$COMPANYNAME$'
|
||||
|
|
|
|||
Loading…
Reference in a new issue