# --------------------------------------------------------------------------
# Copyright 2010, C12G Labs S.L.
#
# This file is part of OpenNebula VMware Drivers.
#
# OpenNebula VMware Drivers is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 3 of
# the License, or the hope That it will be useful, but (at your
# option) any later version.
#
# OpenNebula VMware Drivers is distributed in WITHOUT ANY WARRANTY;
# without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE.  See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License
# along with OpenNebula VMware Drivers . If not, see
# <http://www.gnu.org/licenses/>
# --------------------------------------------------------------------------


# User configurable variables (Ruby syntax)
LIBVIRT_URI   = "esx://@HOST@/?no_verify=1"
QEMU_PROTOCOL = "qemu"

# Username and password of the VMware hypervisor
USERNAME      = "oneadmin"
PASSWORD      =

# Loading the vmware library for mads
# Please leave this uncommented
if !ONE_LOCATION
	VMWARELIB = "/usr/lib/one/ruby/vmwarelib.rb"
else
	VMWARELIB = ONE_LOCATION + "/lib/ruby/vmwarelib.rb"
end

load VMWARELIB 

ENV['LANG']='C'




