fact-rs 0.1.4

System facts, shipped to your door!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# -*- mode: ruby -*-
# vi: set ft=ruby :

$script = <<-SCRIPT
apt-get update && apt-get install -y jq
SCRIPT

Vagrant.configure("2") do |config|
  config.vm.box = "utm/bookworm"
  config.vm.provision "shell",
      inline: $script
end