2

我可以获得一个非常基础的复合资源(感谢这个 SO question这个 SO question这个 MSDN 博客DSC 电子书)。我遇到的问题是,每当我使用必须使用Import-DscResourcecmdlet 的资源时,复合资源就会停止工作。

我已经阅读了有关复合资源的所有信息,但我无法弄清楚为什么会发生这种情况。这是我要开始工作的资源示例,首先是模块目录结构:

C:\Program Files\WindowsPowerShell\Modules\TestComposite
    TestComposite.psd1
    DSCResources
        TestResource
            TestResource.schema.psm1
            TestResource.psd1

的内容TestComposite.psd1

@{
ModuleVersion = '1.0'
GUID = '996a9793-dae7-4c25-8fb5-d3fad094d358'
Author = 'Joseph Alcorn'
CompanyName = 'unknown'
Copyright = '(c) 2014 Joseph Alcorn. All rights reserved.'
Description = 'Composite DSC Resource Test'
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
}

的内容 TestResource.psd1

@{
RootModule = 'TestResource.schema.psm1'
ModuleVersion = '1.0'
GUID = '38ca17b0-7d69-4ad5-bb75-fe4de22290d
Author = 'Joseph Alcorn'
CompanyName = 'unknown'
Copyright = '(c) 2014 Joseph Alcorn. All rights reserved.'
Description = 'Composite DSC Resource Test'
FunctionsToExport = '*'
CmdletsToExport = '*'
VariablesToExport = '*'
AliasesToExport = '*'
}

如果我有TestResource.schema.psm1be this 的内容,则复合资源被识别并且一切正常。

Configuration TestResource
{
    param
    (
        [Parameter(Mandatory=$true)]
        [string]
        $IPAddress
    )

    File TestFile1
    {
        DestinationPath = "C:\TestFile.txt";
        Contents = $IPAddress
    }
}

一旦我将配置更改为此,它就不再被识别Get-DscResource,任何尝试使用它的配置都会出错。

Configuration TestResource
{
    param
    (
        [Parameter(Mandatory=$true)]
        [string]
        $IPAddress
    )

    Import-DscResource -ModuleName xNetworking

    xIPAddress IPAddress
    {
        IPAddress = $IPAddress
        InterfaceAlias = "Ethernet"
        DefaultGateway = "192.168.0.1"
        SubnetMask = "255.255.0.0"
        AddressFamily = "IPv4"
        Ensure = "Present"
    }
}

现在,我安装了 DSC Resource Kit Wave 1-3 并且可用,我可以毫无问题地使用它们,事实上我使用该xNetworking资源创建了一个配置,没有任何问题。当TestResource.schema.psm1文件设置为上述时,系统不再将其视为有效资源(Get-DscResource不再列出它)。

如果我删除了该Import-DscResource行,但不考虑其他所有内容,它会识别资源,但该资源不可用,因为它不知道在哪里可以找到 xNetworking 模块。我尝试将其Import-DscResource -ModuleName xNetworking放入配置.ps1中,希望导入会逐渐减少,但仍然没有运气。

我是否遗漏了文档中说明复合资源无法使用Import-DscResourcecmdlet 的内容?如果您不能在其中使用其他自定义资源,我看不到复合资源的意义。

4

1 回答 1

2

嗯,我觉得很傻。整个问题是我在资源中拼写xNetworking错误xNetwroking。解决了愚蠢的问题,我解决了我的问题。

于 2014-06-13T20:35:42.433 回答