mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Turn on frozen string support in all files by using a comment to avoid enabling across dependencies where it may not work. Fixes: #1177
15 lines
331 B
Ruby
15 lines
331 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
#
|
|
# frozen_string_literal: true
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "infernix/tinycore"
|
|
config.ssh.shell = "/bin/sh"
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.storage :file, :size => '1G'
|
|
end
|
|
end
|