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

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

rename

File size: 495 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 env_check.sh
13
14# [Main]
15cpu_check
16check_systemInfo
17VMM_select
18
19# [Install VMM/Hypervisior]
20if [ $VMM_select == 1 ]; then
21    source xen_intall.sh
22else
23    source kvm_intall.sh
24fi
25
26# [DRBL Environment Configuration]
27
Note: See TracBrowser for help on using the repository browser.