适用于Windows和Powershell食谱的Puppet

时间:2012-11-09 18:37:39

标签: powershell puppet recipe

我正在尝试在puppet配方中设置一些powershell内联cmdlet,以便安装其他msi包和powershell脚本。

class ps{
    #http://docs.puppetlabs.com/windows/running.html

    exec {'executionpolicy':
        path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0', 
        command => 'Powershell.exe "Set-ExecutionPolicy Unrestricted -Force -Verbose"',
        logoutput => true
        }

    exec {'psremoting':
        path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0', 
        command => 'Powershell.exe "Enable-PSRemoting -Force -Verbose"',
        logoutput => true,
        require => Exec["executionpolicy"]
        } 
    exec {'psmemory':
        path => 'C:\Windows\sysnative\WindowsPowerShell\v1.0', 
        command => 'Powershell.exe "Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 2048"',
        logoutput => true,
        require => [Exec["psremoting"],Exec["executionpolicy"]]
    }
}

我遇到了不同的错误,我正在考虑更改方法并将这些内联cmdlet添加到.ps1脚本中。有关运行powershell内联脚本作为木偶食谱的任何建议吗?

感谢。

1 个答案:

答案 0 :(得分:1)

你可以使用这个powershell木偶模块来帮助你

http://forge.puppetlabs.com/joshcooper/powershell/0.0.2

这项工作更好