source: drbl-virt/sbin/drbl_virt.sh @ 176

Last change on this file since 176 was 175, checked in by rock, 14 years ago

Modify: Patch order

File size: 603 bytes
Line 
1#!/bin/bash
2# Program:
3#   DRBL virt module
4# Author:
5#   Jazz, Rock {jazz, rock}@nchc.org.tw
6# Version:
7#    1.0
8# History:                                                                                         
9#   2010/07/20  Rock    First release (1.0)
10
11# [Source]
12source /opt/drbl-virt/conf/drbl-virt.conf
13source $Work_Path/functions_drbl_virt
14# [Main]
15install_drbl-virt_dir
16cpu_check
17check_systemInfo
18VMM_select
19#check_root
20
21# [Install VMM/Hypervisior] 1=Xen, 2=KVM
22if [ $VMM_select == 1 ]; then
23    source xen_install.sh
24else
25    source kvm_install.sh
26fi
27
28# [DRBL Environment Configuration]
29
Note: See TracBrowser for help on using the repository browser.