Attempt to find the lxc-version command using sudo

... if lxc-version is not found in the efault PATH

Fixes #195
This commit is contained in:
Jan Vansteenkiste 2013-11-12 13:36:55 +01:00
parent 6779556650
commit 9b7491c2e8

View file

@ -26,8 +26,12 @@ module Vagrant
end
def ensure_lxc_installed!
unless system("which lxc-version > /dev/null")
raise Errors::LxcNotInstalled
unless system("which lxc-version > /dev/null 2>&1")
begin
sudo_wrapper.run("which", "lxc-version")
rescue Vagrant::LXC::Errors::ExecuteError
raise Errors::LxcNotInstalled
end
end
end