Use sudo for read_ip_address capability

Fixes #4868
This commit is contained in:
Seth Vargo 2015-07-10 13:25:11 -06:00
parent 00f1e46777
commit 5f383b546c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module VagrantPlugins
def self.read_ip_address(machine)
command = "LANG=en ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1 }'"
result = ""
machine.communicate.execute(command) do |type, data|
machine.communicate.sudo(command) do |type, data|
result << data if type == :stdout
end