1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-29 11:21:30 +03:00

Load ruby libs path in ImageRepository

This commit is contained in:
Daniel Molina 2010-11-25 13:02:42 +01:00
parent 59a2e5056f
commit 52ff006835

View File

@ -14,6 +14,16 @@
# limitations under the License. #
#--------------------------------------------------------------------------- #
ONE_LOCATION=ENV["ONE_LOCATION"]
if !ONE_LOCATION
RUBY_LIB_LOCATION="/usr/lib/one/ruby"
else
RUBY_LIB_LOCATION=ONE_LOCATION+"/lib/ruby"
end
$: << RUBY_LIB_LOCATION
require 'OpenNebula/Image'
require 'fileutils'
require 'CommandManager'