blob: 08f5eb368e3aa0791e16636c3ea7a11091077cfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/bash -x
if [[ ! -e /tmp/pxe01.raw ]]; then
qemu-img create -f raw /tmp/pxe01.raw 20G
else
rm -rf /tmp/pxe01.raw
qemu-img create -f raw /tmp/pxe01.raw 20G
fi
virsh list |grep pxe01
vmrc=$?
if [[ $vmrc -eq 0 ]] ; then
virsh destroy pxe01
virsh undefine pxe01
else
echo "no legacy pxe vm found"
fi
virt-install --accelerate --hvm --connect qemu:///system \
--network=bridge:installation,mac=00:11:20:30:40:01 --pxe \
--network=network:default \
--name pxe01 --ram=8192 \
--disk /tmp/pxe01.raw,format=raw \
--vcpus=10 \
--graphics vnc,listen=0.0.0.0 --noautoconsole \
--os-type=linux --os-variant=rhel6
rm -rf switch-file
echo "machine,10.145.81.220,5,1,00:11:20:30:40:01" > switch-file
echo "switch,10.145.81.220,huawei,v2c,public,under_monitoring" >> switch-file
/usr/bin/python /opt/compass/bin/manage_db.py set_switch_machines --switch_machines_file switch-file
/usr/bin/python /opt/compass/bin/manage_db.py clean_clusters
/usr/bin/python /opt/compass/bin/manage_db.py clean_installation_progress
|