我有一个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 }}"]
}
}
答案1
供应商需要像这样声明
"provisioners": [
{
"type": "powershell",
"script": "path/to/your/script.ps1"
}
// Add more provisioners or scripts as needed
]
所以我认为你的模板声明错误