Sha256: e1fdfc10f09800765e1319441344821a512967f5b359e430bb0105212e8b44ab
Contents?: true
Size: 394 Bytes
Versions: 7
Compression:
Stored size: 394 Bytes
Contents
# Vagrantfileの例(Debianを利用する場合) ```bash Vagrant.configure("2") do |config| config.vm.box = "dummy" config.ssh.username = "root" config.vm.provider :sakura do |sakura, override| sakura.os_type = "debian" sakura.public_key_path = File.expand_path("~/.ssh/id_rsa.pub") override.ssh.private_key_path = File.expand_path("~/.ssh/id_rsa") end end ```
Version data entries
7 entries across 7 versions & 1 rubygems