packer-cn/command/test-fixtures/build-only/template.json

35 lines
753 B
JSON
Raw Normal View History

{
"builders": [
{
"name":"chocolate",
"type":"file",
"content":"chocolate",
"target":"chocolate.txt"
},
{
"name":"vanilla",
"type":"file",
"content":"vanilla",
"target":"vanilla.txt"
},
{
"name":"cherry",
"type":"file",
"content":"cherry",
"target":"cherry.txt"
}
],
"post-processors": [
{
2019-01-10 09:27:02 -05:00
"name": "apple",
"type": "shell-local",
"inline": ["touch apple.txt"]
},
{
2019-01-10 09:27:02 -05:00
"name": "peach",
"type": "shell-local",
"inline": ["touch peach.txt"]
}
]
}