summaryrefslogblamecommitdiffstats
path: root/os-plugins/plugins/virtualbox/XX_virtualbox.sh
blob: 998dabd7eadaa6a1f75619c7b66254acdac492d1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                         











                                                                          


                             
                                               




                                                                
                                              
                           

                         
               


                                                                     
                                                   












                                                                             
                          




                                                                              
      




                                                       
 
                                 
                                             
                                      

                            

                                      



                                                                               
# Copyright (c) 2009, 2010 - OpenSLX GmbH
#
# This program/file is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your feedback to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org
#
# script is included from init via the "." load function - thus it has all
# variables and functions available

# include default directories
. /etc/openslx.conf

CONFFILE=/initramfs/plugin-conf/virtualbox.conf
PLUGINCONFDIR=/mnt/${OPENSLX_DEFAULT_CONFDIR}/plugins/virtualbox
PLUGINDIR=/mnt/${OPENSLX_DEFAULT_DIR}/plugin-repo/virtualbox
VIRTDIR=/mnt/${OPENSLX_DEFAULT_VIRTDIR}/virtualbox
LOGDIR=/mnt/${OPENSLX_DEFAULT_LOGDIR}

# check if the configuration file is available
if [ -e ${CONFFILE} ]; then

  # load needed variables
  . ${CONFFILE}

  # Test if this plugin is activated... more or less useless with the
  # new plugin system
  if [ $virtualbox_active -ne 0 2>/dev/null ]; then

    [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'virtualbox' os-plugin ...";
    # load general configuration
    . /initramfs/machine-setup

    # get source of virtualbox image server (get type, server and path)
    if strinstr "/" "${virtualbox_imagesrc}" ; then
      vbimgprot=$(uri_token ${virtualbox_imagesrc} prot)
      vbimgserv=$(uri_token ${virtualbox_imagesrc} server)
      vbimgpath="$(uri_token ${virtualbox_imagesrc} path)"
    fi
    if [ -n "${vbimgserv}" ] ; then
      # directory where qemu images are expected in
      mnttarget=${VIRTDIR}
      # mount the virtualbox image source readonly (ro)
      fsmount ${vbimgprot} ${vbimgserv} ${vbimgpath} ${mnttarget} ro
    else
      [ $DEBUGLEVEL -gt 1 ] && error "  * Incomplete information in variable \
${virtualbox_imagesrc}." nonfatal
    fi
    # copy virtualization include files to config dir
    testmkd ${PLUGINCONFDIR}
    cp ${PLUGINDIR}/*.include ${PLUGINCONFDIR}
    # copy ${CONFFILE} to ${PLUGINCONFDIR} just in case
    cp ${CONFFILE} ${PLUGINCONFDIR}

    # copy and activate init file
    cp ${PLUGINDIR}/vbox-slx /mnt/etc/init.d/
    chmod 755 /mnt/etc/init.d/vbox-slx
    rllinker "vbox-slx" 20 2

    mknod -m 0660 /dev/vboxdrv c 10 59
    chown root:vboxusers /dev/vboxdrv
  fi
else
  [ $DEBUGLEVEL -gt 0 ] && echo "  * Configuration of virtualbox plugin failed"
fi