Last active
May 26, 2018 05:15
-
-
Save d78ui98/e299cf35f1ea6be0f3d7f9c22826dac9 to your computer and use it in GitHub Desktop.
vagrant file to install LTSP to ubuntu box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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