Vagrantfile 375 bytes
Vagrant.configure(2) do |config|
  config.vm.box = "ubuntu/xenial64"
  config.vm.define "proxysql" do |proxysql|
  end
  config.vm.provider "virtualbox" do |v|
    v.linked_clone = true
  end
  config.vm.provision "shell",
    :path => "vagrant_specs.sh",
    :upload_path => "/home/ubuntu/specs",
    # change role name below
    :args => "--install ansible-proxysql"
end