mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -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 @{
|
Write-IcingaForWindowsComponentManifest -Name $Name -ModuleConfig @{
|
||||||
'$MODULENAME$' = ([string]::Format('Windows {0}', $Name));
|
'$MODULENAME$' = ([string]::Format('Windows {0}', $Name));
|
||||||
'$GUID$' = (New-Guid);
|
'$GUID$' = (New-Guid);
|
||||||
'$ROOTMODULE$' = ([string]::Format('{0}.psm1', $ModuleName));
|
|
||||||
'$AUTHOR$' = $Author;
|
'$AUTHOR$' = $Author;
|
||||||
'$COMPANYNAME$' = $CompanyName;
|
'$COMPANYNAME$' = $CompanyName;
|
||||||
'$COPYRIGHT$' = $Copyright;
|
'$COPYRIGHT$' = $Copyright;
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
@{
|
@{
|
||||||
ModuleVersion = '$MODULEVERSION$'
|
ModuleVersion = '$MODULEVERSION$'
|
||||||
RootModule = '$ROOTMODULE$'
|
|
||||||
GUID = '$GUID$'
|
GUID = '$GUID$'
|
||||||
Author = '$AUTHOR$'
|
Author = '$AUTHOR$'
|
||||||
CompanyName = '$COMPANYNAME$'
|
CompanyName = '$COMPANYNAME$'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue