mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-16 02:22:52 +01:00
Fixed few RAT issues reported for new additions of files to repo. Signed-off-by: Santhosh Edukulla <Santhosh.Edukulla@citrix.com> Signed-off-by: Abhinandan Prateek <aprateek@apache.org>
57 lines
1.9 KiB
Bash
Executable File
57 lines
1.9 KiB
Bash
Executable File
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
#!/bin/bash
|
|
# Starts a vm on the xenserver with a predefined MAC and name-label
|
|
|
|
usage() {
|
|
printf "Usage: %s: -m <mac> -n <vm name>\n" $(basename $0) >&2
|
|
exit 2
|
|
}
|
|
|
|
mac=
|
|
vmname=
|
|
while getopts 'm:n:' OPTION
|
|
do
|
|
case $OPTION in
|
|
m) mac="$OPTARG"
|
|
;;
|
|
n) vmname="$OPTARG"
|
|
;;
|
|
?) usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
vmuuid=$(xe vm-install template=Other\ install\ media new-name-label=$vmname)
|
|
|
|
sruuid=$(xe sr-list type=lvm | grep uuid | awk '{print $5}')
|
|
vdiuuid=$(xe vdi-create name-label=$vmname sharable=0 sr-uuid=$sruuid type=user virtual-size=21474836480)
|
|
vbduuid=$(xe vbd-create bootable=true mode=RW type=DISK device=0 unpluggable=true vdi-uuid=$vdiuuid vm-uuid=$vmuuid)
|
|
|
|
nwuuid=$(xe network-list bridge=xenbr0 | grep uuid | awk '{print $5}')
|
|
xe vif-create mac=$mac network-uuid=$nwuuid device=0 vm-uuid=$vmuuid
|
|
|
|
#Boot network followed by root disk
|
|
$(xe vm-param-set HVM-boot-params:order=nc uuid=$vmuuid)
|
|
#Minimum mem requirements for RHEL/Ubuntu
|
|
$(xe vm-memory-limits-set static-min=1GiB static-max=1GiB dynamic-min=1GiB dynamic-max=1GiB uuid=$vmuuid)
|
|
$(xe vm-start uuid=$vmuuid)
|
|
|