我有一个packer
正在尝试运行的模板。它通常会执行我希望它执行的操作,即创建一个 Azure VM,对其进行概括并将其上传到计算库。我现在尝试扩展它以通过Powershell
脚本安装应用程序。问题是我无法弄清楚脚本应该在哪里或者我应该如何在模板中调用它。
我看过各种示例,其中人们使用不同的格式,例如使用相对路径,例如script = "./install_app.ps1"
,或仅调用脚本名称本身,例如script = "install_app.ps1"
。我已经尝试了两种方法,但都收到错误packer
。
Error: Failed preparing provisioner-block "powershell" ""
on .\win10Packer.pkr.hcl line 56:
(source code not available)
1 error(s) occurred:
* Bad script './install_app.ps1': CreateFile ./install_app.ps1: The system
cannot find the file specified.
我的build{}
部分:
build {
sources = ["source.azure-arm.autogenerated_1"]
provisioner "powershell" {
inline = ["Set-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted","Install-Module PSCompression"]
}
provisioner "powershell" {
script = "./install_npp.ps1"
}
provisioner "powershell" {
inline = ["& $env:SystemRoot\\System32\\Sysprep\\Sysprep.exe /oobe /generalize /quiet /quits", "while($true) { $imageState = Get-ItemProperty HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Setup\\State | Select ImageState; if($imageState.ImageState -ne 'IMAGE_STATE_GENERALIZE_RESEAL_TO_OOBE') { Write-Output $imageState.ImageState; Start-Sleep -s 10 } else { break }}"]
}
}
需要像这样声明一个配置者
所以我认为你的模板声明错误