2009-01-02 17:58:51 +03:00
#!/bin/bash
2009-01-19 21:05:46 +03:00
# -------------------------------------------------------------------------- #
2010-02-22 20:00:30 +03:00
# Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org) #
2009-01-19 21:05:46 +03:00
# #
# Licensed under the Apache License, Version 2.0 (the "License"); you may #
# not use this file except in compliance with the License. You may obtain #
# a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
#--------------------------------------------------------------------------- #
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Install program for OpenNebula. It will install it relative to
2010-07-11 22:39:10 +04:00
# $ONE_LOCATION if defined with the -d option, otherwise it'll be installed
2009-01-02 17:58:51 +03:00
# under /. In this case you may specified the oneadmin user/group, so you do
# not need run the OpenNebula daemon with root priviledges
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# COMMAND LINE PARSING
#-------------------------------------------------------------------------------
usage( ) {
echo
2010-07-11 22:39:10 +04:00
echo "Usage: install.sh [-u install_user] [-g install_group] [-k keep conf]"
2009-10-22 15:20:27 +04:00
echo " [-d ONE_LOCATION] [-c occi|ec2] [-r] [-h]"
2010-07-11 22:39:10 +04:00
echo
2009-01-02 17:58:51 +03:00
echo "-u: user that will run opennebula, defults to user executing install.sh"
echo "-g: group of the user that will run opennebula, defults to user"
echo " executing install.sh"
echo "-k: keep current configuration files, useful when upgrading"
echo "-d: target installation directory, if not defined it'd be root"
2009-10-22 15:20:27 +04:00
echo "-c: install only 'occi' or 'ec2' client files"
2009-01-02 17:58:51 +03:00
echo "-r: remove Opennebula, only useful if -d was not specified, otherwise"
echo " rm -rf \$ONE_LOCATION would do the job"
2009-08-27 21:25:39 +04:00
echo "-l: creates symlinks instead of copying files, useful for development"
2009-01-02 17:58:51 +03:00
echo "-h: prints this help"
2008-06-17 20:27:32 +04:00
}
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
2008-06-17 20:27:32 +04:00
2009-10-22 15:20:27 +04:00
TEMP_OPT = ` getopt -o hkrlc:u:g:d: -n 'install.sh' -- " $@ " `
2008-06-17 20:27:32 +04:00
2010-07-11 22:39:10 +04:00
if [ $? != 0 ] ; then
2009-01-02 17:58:51 +03:00
usage
exit 1
2008-06-17 20:27:32 +04:00
fi
2009-01-02 17:58:51 +03:00
eval set -- " $TEMP_OPT "
2008-07-17 23:42:17 +04:00
2009-01-02 17:58:51 +03:00
INSTALL_ETC = "yes"
UNINSTALL = "no"
2009-08-27 21:25:39 +04:00
LINK = "no"
2009-09-25 22:18:50 +04:00
CLIENT = "no"
2009-01-02 17:58:51 +03:00
ONEADMIN_USER = ` id -u`
ONEADMIN_GROUP = ` id -g`
SRC_DIR = $PWD
2008-11-13 19:21:17 +03:00
2009-01-02 17:58:51 +03:00
while true ; do
case " $1 " in
-h) usage; exit 0; ;
-k) INSTALL_ETC = "no" ; shift ; ;
-r) UNINSTALL = "yes" ; shift ; ;
2009-08-27 21:25:39 +04:00
-l) LINK = "yes" ; shift ; ;
2009-10-22 15:20:27 +04:00
-c) CLIENT = " $2 " ; shift 2; ;
2009-01-02 17:58:51 +03:00
-u) ONEADMIN_USER = " $2 " ; shift 2; ;
-g) ONEADMIN_GROUP = " $2 " ; shift 2; ;
2009-01-19 19:40:46 +03:00
-d) ROOT = " $2 " ; shift 2 ; ;
2009-01-02 17:58:51 +03:00
--) shift ; break ; ;
*) usage; exit 1 ; ;
esac
done
2008-11-13 19:21:17 +03:00
2009-10-22 15:20:27 +04:00
if echo " $CLIENT " | egrep -ivq '^(no|occi|ec2)$' ; then
echo " ERROR: client ' $CLIENT ' not valid. Use either 'occi' or 'ec2'. "
usage
exit 1
else
CLIENT = ` echo $CLIENT | tr [ :upper:] [ :lower:] `
fi
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Definition of locations
#-------------------------------------------------------------------------------
2009-01-19 19:40:46 +03:00
if [ -z " $ROOT " ] ; then
2009-01-02 17:58:51 +03:00
BIN_LOCATION = "/usr/bin"
LIB_LOCATION = "/usr/lib/one"
ETC_LOCATION = "/etc/one"
LOG_LOCATION = "/var/log/one"
VAR_LOCATION = "/var/lib/one"
2010-07-22 20:20:12 +04:00
IMAGES_LOCATION = " $VAR_LOCATION /images "
2009-01-02 17:58:51 +03:00
RUN_LOCATION = "/var/run/one"
2009-12-12 18:35:04 +03:00
LOCK_LOCATION = "/var/lock/one"
2009-01-02 17:58:51 +03:00
INCLUDE_LOCATION = "/usr/include"
SHARE_LOCATION = "/usr/share/doc/opennebula"
2010-07-11 22:39:10 +04:00
2009-09-25 22:18:50 +04:00
if [ " $CLIENT " = "no" ] ; then
MAKE_DIRS = " $BIN_LOCATION $LIB_LOCATION $ETC_LOCATION $VAR_LOCATION \
$INCLUDE_LOCATION $SHARE_LOCATION \
2010-07-22 20:20:12 +04:00
$LOG_LOCATION $RUN_LOCATION $LOCK_LOCATION $IMAGES_LOCATION "
2010-07-11 22:39:10 +04:00
2009-09-25 22:18:50 +04:00
DELETE_DIRS = " $LIB_LOCATION $ETC_LOCATION $LOG_LOCATION $VAR_LOCATION \
$RUN_LOCATION $SHARE_DIRS "
2009-12-12 18:35:04 +03:00
CHOWN_DIRS = " $LOG_LOCATION $VAR_LOCATION $RUN_LOCATION $LOCK_LOCATION "
2009-09-25 22:18:50 +04:00
else
MAKE_DIRS = " $BIN_LOCATION $LIB_LOCATION "
2009-01-02 17:58:51 +03:00
2009-09-25 22:18:50 +04:00
DELETE_DIRS = ""
2009-01-02 17:58:51 +03:00
2009-09-25 22:18:50 +04:00
CHOWN_DIRS = ""
fi
2009-05-07 19:23:13 +04:00
2009-01-02 17:58:51 +03:00
else
2009-01-19 19:40:46 +03:00
BIN_LOCATION = " $ROOT /bin "
LIB_LOCATION = " $ROOT /lib "
ETC_LOCATION = " $ROOT /etc "
VAR_LOCATION = " $ROOT /var "
2010-07-22 20:20:12 +04:00
IMAGES_LOCATION = " $VAR_LOCATION /images "
2009-01-19 19:40:46 +03:00
INCLUDE_LOCATION = " $ROOT /include "
SHARE_LOCATION = " $ROOT /share "
2009-01-02 17:58:51 +03:00
2009-09-25 22:18:50 +04:00
if [ " $CLIENT " = "no" ] ; then
MAKE_DIRS = " $BIN_LOCATION $LIB_LOCATION $ETC_LOCATION $VAR_LOCATION \
2010-07-22 20:20:12 +04:00
$INCLUDE_LOCATION $SHARE_LOCATION $IMAGES_LOCATION "
2010-07-11 22:39:10 +04:00
2009-09-25 22:18:50 +04:00
DELETE_DIRS = " $MAKE_DIRS "
CHOWN_DIRS = " $ROOT "
else
MAKE_DIRS = " $BIN_LOCATION $LIB_LOCATION "
DELETE_DIRS = " $MAKE_DIRS "
fi
2009-01-02 17:58:51 +03:00
2009-01-19 19:40:46 +03:00
CHOWN_DIRS = " $ROOT "
2009-01-02 17:58:51 +03:00
fi
2008-11-13 19:21:17 +03:00
2009-01-02 17:58:51 +03:00
SHARE_DIRS = " $SHARE_LOCATION /examples \
2009-07-21 14:45:54 +04:00
$SHARE_LOCATION /examples/tm \
$SHARE_LOCATION /hooks"
2009-01-02 17:58:51 +03:00
ETC_DIRS = " $ETC_LOCATION /im_kvm \
$ETC_LOCATION /im_xen \
$ETC_LOCATION /im_ec2 \
2009-07-20 18:34:10 +04:00
$ETC_LOCATION /im_eh \
2009-01-02 17:58:51 +03:00
$ETC_LOCATION /vmm_kvm \
$ETC_LOCATION /vmm_xen \
$ETC_LOCATION /vmm_ec2 \
2009-07-20 18:34:10 +04:00
$ETC_LOCATION /vmm_eh \
2009-01-02 17:58:51 +03:00
$ETC_LOCATION /tm_nfs \
$ETC_LOCATION /tm_ssh \
2009-04-04 03:34:33 +04:00
$ETC_LOCATION /tm_dummy \
2009-10-16 17:50:56 +04:00
$ETC_LOCATION /tm_lvm \
2009-07-21 18:56:35 +04:00
$ETC_LOCATION /hm \
2010-07-09 20:59:42 +04:00
$ETC_LOCATION /auth \
2009-09-03 22:10:55 +04:00
$ETC_LOCATION /ec2query_templates \
$ETC_LOCATION /occi_templates"
2009-01-02 17:58:51 +03:00
LIB_DIRS = " $LIB_LOCATION /im_probes \
$LIB_LOCATION /ruby \
2009-07-09 18:34:34 +04:00
$LIB_LOCATION /ruby/OpenNebula \
2009-10-12 03:06:46 +04:00
$LIB_LOCATION /ruby/cloud/ \
$LIB_LOCATION /ruby/cloud/econe \
$LIB_LOCATION /ruby/cloud/econe/views \
$LIB_LOCATION /ruby/cloud/occi \
2009-01-02 17:58:51 +03:00
$LIB_LOCATION /tm_commands \
$LIB_LOCATION /tm_commands/nfs \
$LIB_LOCATION /tm_commands/ssh \
$LIB_LOCATION /tm_commands/dummy \
2009-10-16 17:50:56 +04:00
$LIB_LOCATION /tm_commands/lvm \
2009-01-02 17:58:51 +03:00
$LIB_LOCATION /mads"
2009-10-22 15:20:27 +04:00
LIB_ECO_CLIENT_DIRS = " $LIB_LOCATION /ruby \
$LIB_LOCATION /ruby/OpenNebula
$LIB_LOCATION /ruby/cloud/ \
$LIB_LOCATION /ruby/cloud/econe"
LIB_OCCI_CLIENT_DIRS = " $LIB_LOCATION /ruby \
$LIB_LOCATION /ruby/OpenNebula
$LIB_LOCATION /ruby/cloud/occi"
2009-09-25 22:18:50 +04:00
if [ " $CLIENT " = "no" ] ; then
MAKE_DIRS = " $MAKE_DIRS $SHARE_DIRS $ETC_DIRS $LIB_DIRS "
2009-10-22 15:20:27 +04:00
elif [ " $CLIENT " = "ec2" ] ; then
MAKE_DIRS = " $MAKE_DIRS $LIB_ECO_CLIENT_DIRS "
elif [ " $CLIENT " = "occi" ] ; then
MAKE_DIRS = " $MAKE_DIRS $LIB_OCCI_CLIENT_DIRS "
2009-09-25 22:18:50 +04:00
fi
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# FILE DEFINITION, WHAT IS GOING TO BE INSTALLED AND WHERE
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
INSTALL_FILES[ 0] = " BIN_FILES: $BIN_LOCATION "
INSTALL_FILES[ 1] = " INCLUDE_FILES: $INCLUDE_LOCATION "
INSTALL_FILES[ 2] = " LIB_FILES: $LIB_LOCATION "
INSTALL_FILES[ 3] = " RUBY_LIB_FILES: $LIB_LOCATION /ruby "
2009-07-09 18:34:34 +04:00
INSTALL_FILES[ 4] = " RUBY_OPENNEBULA_LIB_FILES: $LIB_LOCATION /ruby/OpenNebula "
INSTALL_FILES[ 5] = " MADS_LIB_FILES: $LIB_LOCATION /mads "
INSTALL_FILES[ 6] = " IM_PROBES_LIB_FILES: $LIB_LOCATION /im_probes "
INSTALL_FILES[ 7] = " NFS_TM_COMMANDS_LIB_FILES: $LIB_LOCATION /tm_commands/nfs "
INSTALL_FILES[ 8] = " SSH_TM_COMMANDS_LIB_FILES: $LIB_LOCATION /tm_commands/ssh "
INSTALL_FILES[ 9] = " DUMMY_TM_COMMANDS_LIB_FILES: $LIB_LOCATION /tm_commands/dummy "
2009-10-16 17:50:56 +04:00
INSTALL_FILES[ 10] = " LVM_TM_COMMANDS_LIB_FILES: $LIB_LOCATION /tm_commands/lvm "
INSTALL_FILES[ 11] = " EXAMPLE_SHARE_FILES: $SHARE_LOCATION /examples "
INSTALL_FILES[ 12] = " TM_EXAMPLE_SHARE_FILES: $SHARE_LOCATION /examples/tm "
INSTALL_FILES[ 13] = " HOOK_SHARE_FILES: $SHARE_LOCATION /hooks "
INSTALL_FILES[ 14] = " COMMON_CLOUD_LIB_FILES: $LIB_LOCATION /ruby/cloud "
INSTALL_FILES[ 15] = " ECO_LIB_FILES: $LIB_LOCATION /ruby/cloud/econe "
INSTALL_FILES[ 16] = " ECO_LIB_VIEW_FILES: $LIB_LOCATION /ruby/cloud/econe/views "
INSTALL_FILES[ 17] = " ECO_BIN_FILES: $BIN_LOCATION "
INSTALL_FILES[ 18] = " OCCI_LIB_FILES: $LIB_LOCATION /ruby/cloud/occi "
INSTALL_FILES[ 19] = " OCCI_BIN_FILES: $BIN_LOCATION "
2009-01-02 17:58:51 +03:00
2009-10-23 03:36:20 +04:00
INSTALL_ECO_CLIENT_FILES[ 0] = " COMMON_CLOUD_CLIENT_LIB_FILES: $LIB_LOCATION /ruby/cloud "
INSTALL_ECO_CLIENT_FILES[ 1] = " ECO_LIB_CLIENT_FILES: $LIB_LOCATION /ruby/cloud/econe "
INSTALL_ECO_CLIENT_FILES[ 2] = " ECO_BIN_CLIENT_FILES: $BIN_LOCATION "
2009-10-22 15:20:27 +04:00
INSTALL_OCCI_CLIENT_FILES[ 0] = " COMMON_CLOUD_CLIENT_LIB_FILES: $LIB_LOCATION /ruby/cloud "
2009-10-23 00:50:34 +04:00
INSTALL_OCCI_CLIENT_FILES[ 1] = " OCCI_LIB_CLIENT_FILES: $LIB_LOCATION /ruby/cloud/occi "
2009-10-22 15:20:27 +04:00
INSTALL_OCCI_CLIENT_FILES[ 2] = " OCCI_BIN_CLIENT_FILES: $BIN_LOCATION "
2009-09-25 22:18:50 +04:00
2009-01-02 17:58:51 +03:00
INSTALL_ETC_FILES[ 0] = " ETC_FILES: $ETC_LOCATION "
INSTALL_ETC_FILES[ 1] = " VMM_XEN_ETC_FILES: $ETC_LOCATION /vmm_xen "
INSTALL_ETC_FILES[ 2] = " VMM_KVM_ETC_FILES: $ETC_LOCATION /vmm_kvm "
INSTALL_ETC_FILES[ 3] = " VMM_EC2_ETC_FILES: $ETC_LOCATION /vmm_ec2 "
2009-07-20 18:34:10 +04:00
INSTALL_ETC_FILES[ 4] = " VMM_EH_ETC_FILES: $ETC_LOCATION /vmm_eh "
INSTALL_ETC_FILES[ 5] = " IM_XEN_ETC_FILES: $ETC_LOCATION /im_xen "
INSTALL_ETC_FILES[ 6] = " IM_KVM_ETC_FILES: $ETC_LOCATION /im_kvm "
INSTALL_ETC_FILES[ 7] = " IM_EC2_ETC_FILES: $ETC_LOCATION /im_ec2 "
INSTALL_ETC_FILES[ 8] = " IM_EH_ETC_FILES: $ETC_LOCATION /im_eh "
INSTALL_ETC_FILES[ 9] = " TM_NFS_ETC_FILES: $ETC_LOCATION /tm_nfs "
INSTALL_ETC_FILES[ 10] = " TM_SSH_ETC_FILES: $ETC_LOCATION /tm_ssh "
INSTALL_ETC_FILES[ 11] = " TM_DUMMY_ETC_FILES: $ETC_LOCATION /tm_dummy "
2009-10-16 17:50:56 +04:00
INSTALL_ETC_FILES[ 12] = " TM_LVM_ETC_FILES: $ETC_LOCATION /tm_lvm "
INSTALL_ETC_FILES[ 13] = " HM_ETC_FILES: $ETC_LOCATION /hm "
2010-07-09 20:59:42 +04:00
INSTALL_ETC_FILES[ 14] = " AUTH_ETC_FILES: $ETC_LOCATION /auth "
INSTALL_ETC_FILES[ 15] = " ECO_ETC_FILES: $ETC_LOCATION "
INSTALL_ETC_FILES[ 16] = " ECO_ETC_TEMPLATE_FILES: $ETC_LOCATION /ec2query_templates "
INSTALL_ETC_FILES[ 17] = " OCCI_ETC_FILES: $ETC_LOCATION "
INSTALL_ETC_FILES[ 18] = " OCCI_ETC_TEMPLATE_FILES: $ETC_LOCATION /occi_templates "
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Binary files, to be installed under $BIN_LOCATION
#-------------------------------------------------------------------------------
BIN_FILES = " src/nebula/oned \
2010-05-14 19:49:23 +04:00
src/scheduler/src/sched/mm_sched \
2010-05-17 17:54:46 +04:00
src/cli/onevm \
src/cli/onehost \
src/cli/onevnet \
src/cli/oneuser \
2010-06-25 15:39:43 +04:00
src/cli/oneimage \
2010-07-09 13:49:19 +04:00
src/cli/onecluster \
2009-01-02 17:58:51 +03:00
share/scripts/one"
#-------------------------------------------------------------------------------
# C/C++ OpenNebula API Library & Development files
# Include files, to be installed under $INCLUDE_LOCATION
# Library files, to be installed under $LIB_LOCATION
#-------------------------------------------------------------------------------
2010-05-17 17:54:46 +04:00
INCLUDE_FILES = ""
LIB_FILES = ""
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Ruby library files, to be installed under $LIB_LOCATION/ruby
#-------------------------------------------------------------------------------
RUBY_LIB_FILES = " src/mad/ruby/one_mad.rb \
src/mad/ruby/one_ssh.rb \
src/mad/ruby/ThreadScheduler.rb \
2009-02-10 20:37:38 +03:00
src/mad/ruby/ActionManager.rb \
src/mad/ruby/CommandManager.rb \
src/mad/ruby/OpenNebulaDriver.rb \
src/mad/ruby/VirtualMachineDriver.rb \
2010-05-17 17:54:46 +04:00
src/cli/client_utilities.rb \
src/cli/command_parse.rb \
2009-07-23 17:54:48 +04:00
src/oca/ruby/OpenNebula.rb \
2010-07-09 20:59:42 +04:00
src/tm_mad/TMScript.rb \
src/authm_mad/one_usage.rb \
src/authm_mad/quota.rb \
2010-07-12 21:49:46 +04:00
src/authm_mad/simple_auth.rb \
2010-07-16 20:48:20 +04:00
src/authm_mad/simple_permissions.rb \
src/authm_mad/ssh_auth.rb"
2009-01-02 17:58:51 +03:00
2009-07-23 17:54:48 +04:00
RUBY_OPENNEBULA_LIB_FILES = " src/oca/ruby/OpenNebula/Host.rb \
src/oca/ruby/OpenNebula/HostPool.rb \
src/oca/ruby/OpenNebula/Pool.rb \
src/oca/ruby/OpenNebula/User.rb \
src/oca/ruby/OpenNebula/UserPool.rb \
src/oca/ruby/OpenNebula/VirtualMachine.rb \
src/oca/ruby/OpenNebula/VirtualMachinePool.rb \
src/oca/ruby/OpenNebula/VirtualNetwork.rb \
src/oca/ruby/OpenNebula/VirtualNetworkPool.rb \
2010-06-25 15:36:42 +04:00
src/oca/ruby/OpenNebula/Image.rb \
src/oca/ruby/OpenNebula/ImagePool.rb \
2010-07-09 13:49:19 +04:00
src/oca/ruby/OpenNebula/Cluster.rb \
src/oca/ruby/OpenNebula/ClusterPool.rb \
2009-07-23 17:54:48 +04:00
src/oca/ruby/OpenNebula/XMLUtils.rb"
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Driver executable files, to be installed under $LIB_LOCATION/mads
#-------------------------------------------------------------------------------
2009-09-25 20:03:03 +04:00
MADS_LIB_FILES = " src/mad/sh/madcommon.sh \
2009-01-02 17:58:51 +03:00
src/tm_mad/tm_common.sh \
src/vmm_mad/xen/one_vmm_xen.rb \
src/vmm_mad/xen/one_vmm_xen \
src/vmm_mad/kvm/one_vmm_kvm.rb \
src/vmm_mad/kvm/one_vmm_kvm \
src/vmm_mad/ec2/one_vmm_ec2.rb \
src/vmm_mad/ec2/one_vmm_ec2 \
2009-07-20 18:34:10 +04:00
src/vmm_mad/eh/one_vmm_eh.rb \
src/vmm_mad/eh/one_vmm_eh \
2009-01-02 17:58:51 +03:00
src/im_mad/im_ssh/one_im_ssh.rb \
src/im_mad/im_ssh/one_im_ssh \
src/im_mad/ec2/one_im_ec2.rb \
src/im_mad/ec2/one_im_ec2 \
2009-07-20 18:34:10 +04:00
src/im_mad/eh/one_im_eh.rb \
src/im_mad/eh/one_im_eh \
2009-01-02 17:58:51 +03:00
src/tm_mad/one_tm \
2009-04-04 03:34:33 +04:00
src/tm_mad/one_tm.rb \
src/hm_mad/one_hm.rb \
2010-07-09 20:59:42 +04:00
src/hm_mad/one_hm \
src/authm_mad/one_auth_mad.rb \
2010-07-12 19:07:56 +04:00
src/authm_mad/one_auth_mad"
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Information Manager Probes, to be installed under $LIB_LOCATION/im_probes
#-------------------------------------------------------------------------------
IM_PROBES_LIB_FILES = " src/im_mad/xen/xen.rb \
src/im_mad/kvm/kvm.rb \
src/im_mad/host_probes/architecture.sh \
src/im_mad/host_probes/cpu.sh \
src/im_mad/host_probes/name.sh"
#-------------------------------------------------------------------------------
# Transfer Manager commands, to be installed under $LIB_LOCATION/tm_commands
# - NFS TM, $LIB_LOCATION/tm_commands/nfs
# - SSH TM, $LIB_LOCATION/tm_commands/ssh
# - dummy TM, $LIB_LOCATION/tm_commands/dummy
2009-10-16 17:50:56 +04:00
# - LVM TM, $LIB_LOCATION/tm_commands/lvm
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
NFS_TM_COMMANDS_LIB_FILES = " src/tm_mad/nfs/tm_clone.sh \
src/tm_mad/nfs/tm_delete.sh \
src/tm_mad/nfs/tm_ln.sh \
src/tm_mad/nfs/tm_mkswap.sh \
src/tm_mad/nfs/tm_mkimage.sh \
2009-03-18 01:39:06 +03:00
src/tm_mad/nfs/tm_mv.sh \
src/tm_mad/nfs/tm_context.sh"
2009-01-02 17:58:51 +03:00
SSH_TM_COMMANDS_LIB_FILES = " src/tm_mad/ssh/tm_clone.sh \
src/tm_mad/ssh/tm_delete.sh \
src/tm_mad/ssh/tm_ln.sh \
src/tm_mad/ssh/tm_mkswap.sh \
src/tm_mad/ssh/tm_mkimage.sh \
2009-03-31 14:51:54 +04:00
src/tm_mad/ssh/tm_mv.sh \
src/tm_mad/ssh/tm_context.sh"
2009-01-02 17:58:51 +03:00
DUMMY_TM_COMMANDS_LIB_FILES = "src/tm_mad/dummy/tm_dummy.sh"
2009-10-16 17:50:56 +04:00
LVM_TM_COMMANDS_LIB_FILES = " src/tm_mad/lvm/tm_clone.sh \
src/tm_mad/lvm/tm_delete.sh \
src/tm_mad/lvm/tm_ln.sh \
src/tm_mad/lvm/tm_mkswap.sh \
src/tm_mad/lvm/tm_mkimage.sh \
src/tm_mad/lvm/tm_mv.sh \
src/tm_mad/lvm/tm_context.sh"
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Configuration files for OpenNebula, to be installed under $ETC_LOCATION
#-------------------------------------------------------------------------------
ETC_FILES = " share/etc/oned.conf \
share/etc/defaultrc"
#-------------------------------------------------------------------------------
# Virtualization drivers config. files, to be installed under $ETC_LOCATION
# - xen, $ETC_LOCATION/vmm_xen
# - kvm, $ETC_LOCATION/vmm_kvm
# - ec2, $ETC_LOCATION/vmm_ec2
2009-07-20 18:34:10 +04:00
# - eh, $ETC_LOCATION/vmm_eh
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
VMM_XEN_ETC_FILES = " src/vmm_mad/xen/vmm_xenrc \
src/vmm_mad/xen/vmm_xen.conf"
VMM_KVM_ETC_FILES = " src/vmm_mad/kvm/vmm_kvmrc \
src/vmm_mad/kvm/vmm_kvm.conf"
VMM_EC2_ETC_FILES = " src/vmm_mad/ec2/vmm_ec2rc \
src/vmm_mad/ec2/vmm_ec2.conf"
2009-07-20 18:34:10 +04:00
VMM_EH_ETC_FILES = " src/vmm_mad/eh/vmm_ehrc \
src/vmm_mad/eh/vmm_eh.conf"
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Information drivers config. files, to be installed under $ETC_LOCATION
# - xen, $ETC_LOCATION/im_xen
# - kvm, $ETC_LOCATION/im_kvm
# - ec2, $ETC_LOCATION/im_ec2
#-------------------------------------------------------------------------------
IM_XEN_ETC_FILES = " src/im_mad/xen/im_xenrc \
src/im_mad/xen/im_xen.conf"
IM_KVM_ETC_FILES = " src/im_mad/kvm/im_kvmrc \
src/im_mad/kvm/im_kvm.conf"
IM_EC2_ETC_FILES = " src/im_mad/ec2/im_ec2rc \
src/im_mad/ec2/im_ec2.conf"
2009-07-20 18:34:10 +04:00
IM_EH_ETC_FILES = " src/im_mad/eh/im_ehrc \
src/im_mad/eh/im_eh.conf"
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Storage drivers config. files, to be installed under $ETC_LOCATION
# - nfs, $ETC_LOCATION/tm_nfs
# - ssh, $ETC_LOCATION/tm_ssh
# - dummy, $ETC_LOCATION/tm_dummy
2009-10-16 17:50:56 +04:00
# - lvm, $ETC_LOCATION/tm_lvm
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
TM_NFS_ETC_FILES = " src/tm_mad/nfs/tm_nfs.conf \
src/tm_mad/nfs/tm_nfsrc"
TM_SSH_ETC_FILES = " src/tm_mad/ssh/tm_ssh.conf \
src/tm_mad/ssh/tm_sshrc"
TM_DUMMY_ETC_FILES = " src/tm_mad/dummy/tm_dummy.conf \
src/tm_mad/dummy/tm_dummyrc"
2009-10-16 17:50:56 +04:00
TM_LVM_ETC_FILES = " src/tm_mad/lvm/tm_lvm.conf \
src/tm_mad/lvm/tm_lvmrc"
2009-04-04 03:34:33 +04:00
#-------------------------------------------------------------------------------
# Hook Manager driver config. files, to be installed under $ETC_LOCATION/hm
#-------------------------------------------------------------------------------
HM_ETC_FILES = "src/hm_mad/hmrc"
2010-07-09 20:59:42 +04:00
#-------------------------------------------------------------------------------
# Hook Manager driver config. files, to be installed under $ETC_LOCATION/hm
#-------------------------------------------------------------------------------
2010-07-13 20:17:25 +04:00
AUTH_ETC_FILES = " src/authm_mad/auth_mad \
src/authm_mad/auth.conf"
2010-07-09 20:59:42 +04:00
2009-01-02 17:58:51 +03:00
#-------------------------------------------------------------------------------
# Sample files, to be installed under $SHARE_LOCATION/examples
#-------------------------------------------------------------------------------
EXAMPLE_SHARE_FILES = " share/examples/vm.template \
share/examples/vm.schema \
share/examples/private.net \
share/examples/public.net"
#-------------------------------------------------------------------------------
# TM Sample files, to be installed under $SHARE_LOCATION/examples/tm
#-------------------------------------------------------------------------------
TM_EXAMPLE_SHARE_FILES = " share/examples/tm/tm_clone.sh \
share/examples/tm/tm_delete.sh \
share/examples/tm/tm_ln.sh \
share/examples/tm/tm_mkimage.sh \
share/examples/tm/tm_mkswap.sh \
share/examples/tm/tm_mv.sh"
2009-07-21 14:45:54 +04:00
#-------------------------------------------------------------------------------
# HOOK scripts, to be installed under $SHARE_LOCATION/hooks
#-------------------------------------------------------------------------------
2009-10-23 18:52:03 +04:00
HOOK_SHARE_FILES = " share/hooks/ebtables-xen \
share/hooks/ebtables-kvm \
2010-07-22 20:20:12 +04:00
share/hooks/ebtables-flush \
share/hooks/image.rb"
2009-07-21 14:45:54 +04:00
2009-07-21 18:56:35 +04:00
#-------------------------------------------------------------------------------
2009-10-12 03:06:46 +04:00
# Common Cloud Files
2009-07-21 18:56:35 +04:00
#-------------------------------------------------------------------------------
2009-10-12 03:06:46 +04:00
COMMON_CLOUD_LIB_FILES = " src/cloud/common/CloudServer.rb \
2009-10-21 21:00:59 +04:00
src/cloud/common/CloudClient.rb \
2010-07-17 05:48:07 +04:00
src/cloud/common/Configuration.rb"
2009-07-23 16:01:47 +04:00
2009-10-22 15:20:27 +04:00
COMMON_CLOUD_CLIENT_LIB_FILES = "src/cloud/common/CloudClient.rb"
2009-10-12 03:06:46 +04:00
#-------------------------------------------------------------------------------
2010-07-11 22:39:10 +04:00
# EC2 Query for OpenNebula
2009-10-12 03:06:46 +04:00
#-------------------------------------------------------------------------------
ECO_LIB_FILES = " src/cloud/ec2/lib/EC2QueryClient.rb \
src/cloud/ec2/lib/EC2QueryServer.rb \
2010-07-16 21:12:25 +04:00
src/cloud/ec2/lib/ImageEC2.rb \
2009-10-12 03:06:46 +04:00
src/cloud/ec2/lib/econe-server.rb"
2009-10-22 15:20:27 +04:00
ECO_LIB_CLIENT_FILES = "src/cloud/ec2/lib/EC2QueryClient.rb"
2009-10-12 03:06:46 +04:00
ECO_LIB_VIEW_FILES = " src/cloud/ec2/lib/views/describe_images.erb \
src/cloud/ec2/lib/views/describe_instances.erb \
src/cloud/ec2/lib/views/register_image.erb \
src/cloud/ec2/lib/views/run_instances.erb \
src/cloud/ec2/lib/views/terminate_instances.erb"
2009-07-21 18:56:35 +04:00
2009-10-12 03:06:46 +04:00
ECO_BIN_FILES = " src/cloud/ec2/bin/econe-server \
src/cloud/ec2/bin/econe-describe-images \
src/cloud/ec2/bin/econe-describe-instances \
src/cloud/ec2/bin/econe-register \
src/cloud/ec2/bin/econe-run-instances \
src/cloud/ec2/bin/econe-terminate-instances \
src/cloud/ec2/bin/econe-upload"
2009-07-21 18:56:35 +04:00
2009-10-22 15:20:27 +04:00
ECO_BIN_CLIENT_FILES = " src/cloud/ec2/bin/econe-describe-images \
src/cloud/ec2/bin/econe-describe-instances \
src/cloud/ec2/bin/econe-register \
src/cloud/ec2/bin/econe-run-instances \
src/cloud/ec2/bin/econe-terminate-instances \
src/cloud/ec2/bin/econe-upload"
2009-10-12 03:06:46 +04:00
ECO_ETC_FILES = "src/cloud/ec2/etc/econe.conf"
ECO_ETC_TEMPLATE_FILES = "src/cloud/ec2/etc/templates/m1.small.erb"
2009-07-21 18:56:35 +04:00
2009-10-19 21:35:50 +04:00
#-----------------------------------------------------------------------------
2009-09-03 22:10:55 +04:00
# OCCI files
2009-10-19 21:35:50 +04:00
#-----------------------------------------------------------------------------
2009-09-03 22:10:55 +04:00
2009-10-20 06:01:57 +04:00
OCCI_LIB_FILES = " src/cloud/occi/lib/OCCIServer.rb \
2009-10-19 21:35:50 +04:00
src/cloud/occi/lib/occi-server.rb \
src/cloud/occi/lib/OCCIClient.rb \
2009-09-03 22:10:55 +04:00
src/cloud/occi/lib/VirtualMachineOCCI.rb \
src/cloud/occi/lib/VirtualMachinePoolOCCI.rb \
src/cloud/occi/lib/VirtualNetworkOCCI.rb \
2009-10-15 21:37:25 +04:00
src/cloud/occi/lib/VirtualNetworkPoolOCCI.rb \
src/cloud/occi/lib/ImageOCCI.rb \
2010-07-11 22:39:10 +04:00
src/cloud/occi/lib/ImagePoolOCCI.rb"
2009-09-03 22:10:55 +04:00
2009-10-22 15:20:27 +04:00
OCCI_LIB_CLIENT_FILES = "src/cloud/occi/lib/OCCIClient.rb"
2009-10-12 03:06:46 +04:00
OCCI_BIN_FILES = " src/cloud/occi/bin/occi-server \
src/cloud/occi/bin/occi-compute \
src/cloud/occi/bin/occi-network \
src/cloud/occi/bin/occi-storage"
2009-09-03 22:10:55 +04:00
2009-10-22 15:20:27 +04:00
OCCI_BIN_CLIENT_FILES = " src/cloud/occi/bin/occi-compute \
src/cloud/occi/bin/occi-network \
src/cloud/occi/bin/occi-storage"
2009-10-12 03:06:46 +04:00
OCCI_ETC_FILES = "src/cloud/occi/etc/occi-server.conf"
2009-09-03 22:10:55 +04:00
2009-10-12 03:06:46 +04:00
OCCI_ETC_TEMPLATE_FILES = " src/cloud/occi/etc/templates/small.erb \
src/cloud/occi/etc/templates/medium.erb \
src/cloud/occi/etc/templates/large.erb"
2009-07-21 18:56:35 +04:00
2009-10-19 21:35:50 +04:00
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
2009-01-02 17:58:51 +03:00
# INSTALL.SH SCRIPT
2009-10-19 21:35:50 +04:00
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
2009-01-02 17:58:51 +03:00
# --- Create OpenNebula directories ---
2010-07-11 22:39:10 +04:00
if [ " $UNINSTALL " = "no" ] ; then
2009-01-02 17:58:51 +03:00
for d in $MAKE_DIRS ; do
2009-01-19 19:40:46 +03:00
mkdir -p $DESTDIR $d
2009-01-02 17:58:51 +03:00
done
fi
2008-11-13 19:21:17 +03:00
2009-01-02 17:58:51 +03:00
# --- Install/Uninstall files ---
2008-12-02 18:52:03 +03:00
2009-01-02 17:58:51 +03:00
do_file( ) {
if [ " $UNINSTALL " = "yes" ] ; then
rm $2 /` basename $1 `
else
2009-08-27 21:25:39 +04:00
if [ " $LINK " = "yes" ] ; then
ln -s $SRC_DIR /$1 $DESTDIR $2
else
cp $SRC_DIR /$1 $DESTDIR $2
fi
2009-01-02 17:58:51 +03:00
fi
}
2008-12-02 18:52:03 +03:00
2009-09-25 22:18:50 +04:00
if [ " $CLIENT " = "no" ] ; then
INSTALL_SET = ${ INSTALL_FILES [@] }
2009-10-22 15:20:27 +04:00
elif [ " $CLIENT " = "occi" ] ; then
INSTALL_SET = ${ INSTALL_OCCI_CLIENT_FILES [@] }
elif [ " $CLIENT " = "ec2" ] ; then
INSTALL_SET = ${ INSTALL_ECO_CLIENT_FILES [@] }
2009-09-25 22:18:50 +04:00
fi
for i in ${ INSTALL_SET [@] } ; do
2009-01-02 17:58:51 +03:00
SRC = $` echo $i | cut -d: -f1`
DST = ` echo $i | cut -d: -f2`
2010-07-11 22:39:10 +04:00
eval SRC_FILES = $SRC
for f in $SRC_FILES ; do
2009-01-02 17:58:51 +03:00
do_file $f $DST
done
done
2008-11-13 19:21:17 +03:00
2009-09-25 22:18:50 +04:00
if [ " $CLIENT " = "no" -a " $INSTALL_ETC " = "yes" ] ; then
2009-01-02 17:58:51 +03:00
for i in ${ INSTALL_ETC_FILES [@] } ; do
SRC = $` echo $i | cut -d: -f1`
DST = ` echo $i | cut -d: -f2`
2010-07-11 22:39:10 +04:00
2009-08-27 21:25:39 +04:00
eval SRC_FILES = $SRC
2010-07-11 22:39:10 +04:00
2009-08-27 21:25:39 +04:00
OLD_LINK = $LINK
LINK = "no"
2010-07-11 22:39:10 +04:00
for f in $SRC_FILES ; do
2009-01-02 17:58:51 +03:00
do_file $f $DST
done
2010-07-11 22:39:10 +04:00
2009-08-27 21:25:39 +04:00
LINK = $OLD_LINK
2009-01-02 17:58:51 +03:00
done
fi
2008-06-17 20:27:32 +04:00
2009-01-02 17:58:51 +03:00
# --- Set ownership or remove OpenNebula directories ---
2008-12-02 19:16:20 +03:00
2010-07-11 22:39:10 +04:00
if [ " $UNINSTALL " = "no" ] ; then
2009-01-19 19:40:46 +03:00
for d in $CHOWN_DIRS ; do
2009-10-21 19:48:46 +04:00
chown -R $ONEADMIN_USER :$ONEADMIN_GROUP $DESTDIR $d
2009-01-19 19:40:46 +03:00
done
2009-01-02 17:58:51 +03:00
else
2009-05-07 19:23:13 +04:00
for d in ` echo $DELETE_DIRS | awk '{for (i=NF;i>=1;i--) printf $i" "}' ` ; do
2009-01-02 17:58:51 +03:00
rmdir $d
done
fi
2010-07-21 20:56:57 +04:00
2010-07-22 20:20:12 +04:00
# --- Set correct permissions for Image Repository ---
IMAGES_LOCATION = $( cd $IMAGES_LOCATION ; pwd )
2010-07-22 20:27:06 +04:00
chmod 3770 $IMAGES_LOCATION
2010-07-22 20:20:12 +04:00
2010-07-21 20:56:57 +04:00
# --- Substitute variables ---
2010-07-22 20:20:12 +04:00
if [ " $CLIENT " = "no" -a $INSTALL_ETC = "yes" ] ; then
HOOKS_LOCATION = $( cd $SHARE_LOCATION /hooks; pwd )
sed -i -e " s%\[HOOKS_LOCATION\]% $HOOKS_LOCATION % " $ETC_LOCATION /oned.conf
sed -i -e " s%\[IMAGES_LOCATION\]% $IMAGES_LOCATION % " $ETC_LOCATION /oned.conf
2010-07-22 19:19:08 +04:00
fi
2010-07-22 20:20:12 +04:00