loopdev-erikh 0.5.0

Setup and control loop devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
Vagrant.configure("2") do |config|
  config.vm.box = "archlinux/archlinux"
  config.vm.provision "shell",
    inline: <<-EOS
      set -eo
      pacman -Syu --noconfirm rustup base-devel clang
      rustup default stable
      fallocate -l 128M /tmp/disk.img
      mv /tmp/disk.img /vagrant/
EOS
end