platform-vagrant.json 452 B

123456789101112131415161718192021222324
  1. {
  2. "post-processors": [
  3. [
  4. {
  5. "type": "vagrant"
  6. },
  7. {
  8. "box_tag": "voidlinux/glibc64",
  9. "type": "vagrant-cloud",
  10. "version": "{{user `version`}}"
  11. }
  12. ]
  13. ],
  14. "provisioners": [
  15. {
  16. "execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
  17. "script": "scripts/vagrant.sh",
  18. "type": "shell"
  19. }
  20. ],
  21. "variables": {
  22. "version": "{{env `RELEASE`}}"
  23. }
  24. }