Last change
on this file since 244 was
217,
checked in by rock, 14 years ago
|
Add: KVM support (bridge to eth for KVM env)
|
-
Property svn:executable set to
*
|
File size:
1.1 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # Program: |
---|
3 | # Install DRBL virt module |
---|
4 | # Author: |
---|
5 | # Jazz, Rock {jazz, rock}@nchc.org.tw |
---|
6 | # Version: |
---|
7 | # 1.0 |
---|
8 | # History: |
---|
9 | # 2010/08/03 Rock First release (1.0) |
---|
10 | |
---|
11 | |
---|
12 | # [Path] |
---|
13 | Work_Home="/opt/drbl-virt" |
---|
14 | Work_Path="/opt/drbl-virt/sbin" |
---|
15 | Now_Path="$(dirname $0)" |
---|
16 | PATH=${PATH}:$Work_Path:${Now_Path}/sbin |
---|
17 | |
---|
18 | # Source] |
---|
19 | source $Now_Path/sbin/functions_drbl_virt |
---|
20 | |
---|
21 | # [Main] |
---|
22 | check_root |
---|
23 | |
---|
24 | jude="no" |
---|
25 | if [ -e $Work_Home ]; then |
---|
26 | echo -e "\nThis system already has drbl-virt." |
---|
27 | read -p "Do you want to install, again (yes/no): " jude |
---|
28 | |
---|
29 | if [ $jude == "yes" ]; then |
---|
30 | rm -fr $Work_Home |
---|
31 | else |
---|
32 | echo "Exit" |
---|
33 | exit |
---|
34 | fi |
---|
35 | fi |
---|
36 | |
---|
37 | |
---|
38 | # = 1. Create /opt/drbl-virt and copy file = |
---|
39 | mkdir -p $Work_Home |
---|
40 | mkdir $Work_Home/etc |
---|
41 | mkdir $Work_Home/.tmp |
---|
42 | cp -fr $Now_Path/sbin $Work_Home/ |
---|
43 | cp -fr $Now_Path/conf $Work_Home/ |
---|
44 | cp -fr $Now_Path/uninstall.sh $Work_Home/ |
---|
45 | |
---|
46 | # = 2. Move war = |
---|
47 | #mv drbl-virt.war $Work_Home/ |
---|
48 | |
---|
49 | # = 4. Install completion = |
---|
50 | echo "" |
---|
51 | echo "[drbl-virt install completion]" |
---|
52 | echo "Please go to /opt/drbl-virt/ to check !!!" |
---|
Note: See
TracBrowser
for help on using the repository browser.