Rename development Vagrantfile to Vagrantfile.dev.lxc
This commit is contained in:
parent
e406be521a
commit
a5d18567cb
2 changed files with 6 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -27,3 +27,4 @@ Vagrantfile
|
|||
/boxes/**/*.tar.gz
|
||||
/boxes/quantal64/rootfs-amd64/
|
||||
/boxes/output/
|
||||
/development/Vagrantfile
|
||||
|
|
|
@ -14,9 +14,9 @@ end
|
|||
Vagrant.require_plugin 'vagrant-lxc'
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "lxc-quantal64"
|
||||
config.vm.box = "lxc-quantal64-2013-03-08"
|
||||
config.vm.box_url = 'http://dl.dropbox.com/u/13510779/lxc-quantal64-2013-03-08.box'
|
||||
config.vm.hostname = 'lxc-quantal64'
|
||||
config.vm.hostname = "lxc-quantal64"
|
||||
|
||||
config.vm.synced_folder "../", "/vagrant", name: 'vagrant-root'
|
||||
|
||||
|
@ -25,10 +25,9 @@ Vagrant.configure("2") do |config|
|
|||
"/var/cache/apt/archives/",
|
||||
name: "vagrant-cache"
|
||||
|
||||
config.vm.provider :lxc do |lxc|
|
||||
# Not sure we need this
|
||||
lxc.start_opts << 'lxc.aa_profile=unconfined'
|
||||
end
|
||||
config.vm.provision :shell, inline: '
|
||||
sudo apt-get update &&
|
||||
sudo apt-get install puppet -y'
|
||||
|
||||
config.vm.provision :puppet do |puppet|
|
||||
puppet.manifests_path = "."
|
Loading…
Reference in a new issue