From 7c1a18dc1a88567d27513010adb4b6b407e8b185 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Wed, 8 May 2013 15:42:59 -0300 Subject: [PATCH] Disable lxc.aa_profile for debian boxes for now I'm not able to start debian containers with that config set --- development/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/Vagrantfile b/development/Vagrantfile index 8f21e41..03a820f 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -70,7 +70,7 @@ Vagrant.configure("2") do |config| lxc_config.vm.hostname = 'lxc-dev-box' unless %w(squeeze wheezy sid).include? box_name.to_s # Required to boot nested containers - lxc.customize 'aa_profile', 'unconfined' + lxc.customize 'aa_profile', 'unconfined' unless %w(squeeze wheezy sid).include? box_name.to_s end end