File: Vagrantfile

package info (click to toggle)
rust-loopdev 0.4.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
Vagrant.configure("2") do |config|
  config.vm.box = "ubuntu/focal64"
  config.vm.provision "shell",
    inline: <<-EOS
      curl https://sh.rustup.rs -sSf | sh -s -- -y
      apt update && apt install -y gcc clang
      fallocate -l 128M /tmp/disk.img
      mv /tmp/disk.img /vagrant/
EOS
end