1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Load ruby libs path in ImageRepository(cherry picked from commit 52ff006835738b441e4e0a642a5dac6e73d32d3f)

This commit is contained in:
Daniel Molina 2010-11-25 13:02:42 +01:00
parent cc50668a4c
commit dbd4f14ab5

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'