mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 11:52:28 +01:00
appliance: Fix build.sh to build 64bit systemvm appliance as well
TODO: Make it general like boxer.sh in tools/devcloud/src Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
41e39dd9fe
commit
72c1a888eb
@ -43,7 +43,7 @@ Note, gem may require gcc-4.2, make sure link exists:
|
||||
Just run build.sh, it will export archived appliances for KVM, Xen,
|
||||
VMWare and HyperV in `dist`:
|
||||
|
||||
sh build.sh
|
||||
sh build.sh [systemvmtemplate|systemvmtemplate64]
|
||||
|
||||
# Building SystemVM template appliance manually
|
||||
|
||||
@ -51,7 +51,7 @@ List available appliances one can build:
|
||||
|
||||
veewee vbox list
|
||||
|
||||
Modify scripts in definitions/systemvmtemplate/ as per needs.
|
||||
Modify scripts in definitions/*appliance*/ as per needs.
|
||||
Build systemvm template appliance:
|
||||
|
||||
veewee vbox build 'systemvmtemplate'
|
||||
|
||||
@ -18,7 +18,13 @@
|
||||
|
||||
set -x
|
||||
|
||||
appliance="systemvmtemplate"
|
||||
if [ "$1"!="" ]
|
||||
then
|
||||
appliance="$1"
|
||||
else
|
||||
appliance="systemvmtemplate"
|
||||
fi
|
||||
|
||||
build_date=`date +%Y-%m-%d`
|
||||
branch="master"
|
||||
rootdir=$PWD
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user