You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/packer_test/provisioner_tests/shell/templates/shebang_in_inline.pkr.hcl

16 lines
222 B

source "docker" "test" {
image = "debian:bookworm"
discard = true
}
build {
sources = ["docker.test"]
provisioner "shell" {
inline = [
"#!/bin/bash -e",
"cat $0 | head -1 | grep -E '#!/bin/bash -e'"
]
}
}