Sha256: 45dbda787efbdc39c3c88beea9dd874f45812bb40750ad139dc975b2b7a2a6b7
Contents?: true
Size: 395 Bytes
Versions: 5
Compression:
Stored size: 395 Bytes
Contents
# Vagrantfileの例(CentOS7を利用する場合) ```bash Vagrant.configure("2") do |config| config.vm.box = "dummy" config.ssh.username = "root" config.vm.provider :sakura do |sakura, override| sakura.os_type = "centos" 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
5 entries across 5 versions & 1 rubygems