Guest User

Untitled

a guest
Dec 13th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "laravel/homestead"
  3. config.vm.provision "shell", inline: <<-SHELL
  4. printf zzz > /home/vagrant/aaa.txt
  5. sudo printf > /home/vagrant/bbb.txt
  6. sh -c "printf > /home/vagrant/ccc.txt"
  7. sudo sh -c "printf > /home/vagrant/ddd.txt"
  8. SHELL
  9. end
Advertisement
Add Comment
Please, Sign In to add comment