github.com/hashicorp/packer@v1.14.3/command/test-fixtures/timeout/template.json (about) 1 { 2 "builders": [ 3 { 4 "name": "roses", 5 "type": "file", 6 "content": "roses", 7 "target": "roses.txt" 8 } 9 ], 10 "provisioners": [ 11 { 12 "type": "shell-local", 13 "inline": [ 14 "touch fuchsias.txt" 15 ], 16 "timeout": "5s" 17 }, 18 { 19 "type": "shell-local", 20 "inline": [ 21 "touch lilas.txt" 22 ] 23 }, 24 { 25 "type": "sleep", 26 "duration": "2m", 27 28 "timeout": "1ms" 29 }, 30 { 31 "type": "shell-local", 32 "inline": [ 33 "touch campanules.txt" 34 ] 35 } 36 ] 37 }