Skip to content

Instantly share code, notes, and snippets.

@d78ui98
Last active May 26, 2018 05:15
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 d78ui98/e299cf35f1ea6be0f3d7f9c22826dac9 to your computer and use it in GitHub Desktop.
Save d78ui98/e299cf35f1ea6be0f3d7f9c22826dac9 to your computer and use it in GitHub Desktop.
vagrant file to install LTSP to ubuntu box
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "public_network", ip: "192.168.1.18", netmask: "255.255.255.0", virtualbox_intnet: "eno1"
config.vm.provider "virtualbox" do |virtualbox|
# Enable promiscuous mode
virtualbox.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
end
config.vm.provision "shell", path: "install.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment