diff --git a/Vagrantfile b/Vagrantfile index 90ee159e5fe0b55ada9ad20219ab2f5fcd53fa43..245474eaaf1d34f0c33b6833e1fe79dda09911a6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,10 @@ $lxc_script = <<-SCRIPT -sudo apt-get install lxc lxc-templates wget bridge-utils jq -y -sudo lxc-checkconfig +apt-get update +apt-get install lxc lxc-templates wget bridge-utils jq -y +lxc-checkconfig + +sudo cp -f /vagrant/clmctest/lxc-net /etc/default/ SCRIPT @@ -14,6 +17,6 @@ Vagrant.configure("2") do |config| #config.vm.network "forwarded_port", guest: 80, host: 8080 - # Install docker + # Install lxc config.vm.provision :shell, inline: $lxc_script end diff --git a/clmctest/lxc-net b/clmctest/lxc-net new file mode 100644 index 0000000000000000000000000000000000000000..684919d3fe0c68b7fe97c2409b9e5696d8efb7b5 --- /dev/null +++ b/clmctest/lxc-net @@ -0,0 +1,32 @@ +# This file is auto-generated by lxc.postinst if it does not +# exist. Customizations will not be overridden. +# Leave USE_LXC_BRIDGE as "true" if you want to use lxcbr0 for your +# containers. Set to "false" if you'll use virbr0 or another existing +# bridge, or mavlan to your host's NIC. +USE_LXC_BRIDGE="true" + +# If you change the LXC_BRIDGE to something other than lxcbr0, then +# you will also need to update your /etc/lxc/default.conf as well as the +# configuration (/var/lib/lxc/<container>/config) for any containers +# already created using the default config to reflect the new bridge +# name. +# If you have the dnsmasq daemon installed, you'll also have to update +# /etc/dnsmasq.d/lxc and restart the system wide dnsmasq daemon. +LXC_BRIDGE="lxcbr0" +LXC_ADDR="172.40.231.1" +LXC_NETMASK="255.255.255.0" +LXC_NETWORK="172.40.231.0/24" +LXC_DHCP_RANGE="172.40.231.2,172.40.231.254" +LXC_DHCP_MAX="253" +# Uncomment the next line if you'd like to use a conf-file for the lxcbr0 +# dnsmasq. For instance, you can use 'dhcp-host=mail1,10.0.3.100' to have +# container 'mail1' always get ip address 10.0.3.100. +LXC_DHCP_CONFILE=/etc/lxc/dnsmasq.conf + +# Uncomment the next line if you want lxcbr0's dnsmasq to resolve the .lxc +# domain. You can then add "server=/lxc/10.0.3.1' (or your actual $LXC_ADDR) +# to your system dnsmasq configuration file (normally /etc/dnsmasq.conf, +# or /etc/NetworkManager/dnsmasq.d/lxc.conf on systems that use NetworkManager). +# Once these changes are made, restart the lxc-net and network-manager services. +# 'container1.lxc' will then resolve on your host. +#LXC_DOMAIN="lxc"