Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. {
  2. "builders": [
  3. {
  4. "add_force": true,
  5. "communicator": "ssh",
  6. "source_path": "ubuntu/trusty64",
  7. "type": "vagrant"
  8. }
  9. ],
  10. "provisioners": [
  11. {
  12. "inline": [
  13. "sudo apt-get update",
  14. "sudo apt-get upgrade -y"
  15. ],
  16. "type": "shell"
  17. },
  18. // install what you need here
  19. {
  20. "inline": [
  21. "sudo apt-get autoremove -y",
  22. "sudo apt-get clean"
  23. ],
  24. "type": "shell"
  25. }
  26. ]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement