Skip to content

Instantly share code, notes, and snippets.

@mrtc0
Last active September 28, 2018 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrtc0/cb53e35cf772bfea3cd791d48e1c5347 to your computer and use it in GitHub Desktop.
Save mrtc0/cb53e35cf772bfea3cd791d48e1c5347 to your computer and use it in GitHub Desktop.
九州セキュリティカンファレンス Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
#####################################################################################
# このファイルがあるディレクトリで vagrant up を実行してください。
# もし、 ダウンロードが遅かったり、 vagrant up で起動しない場合は
# Vagrant box を以下のURLからダウンロードしてください
# https://drive.google.com/file/d/1fI_kYmKaYZKmv8djCaE3IagiCkbQsmK1/view?usp=sharing
# その後、以下のコマンドを実行し、VMを起動してください。
# 1. vagrant box add kyusec-container package.box
# 2. vagrant init kyusec-container
# 3. vagrant up
#######################################################################################
Vagrant.configure("2") do |config|
config.vm.box = "pepabo/kyusec-container"
config.vm.provider "virtualbox" do |vb|
vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end
config.vm.synced_folder '.', '/home/vagrant/files'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment