Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2017-10-12 22:50:14
Size: 1032
Editor: shran
Comment:
Revision 8 as of 2017-11-11 20:19:45
Size: 1129
Editor: shran
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Once a template system has been installed, that system can be cloned. Use the following script to clone your template Once a template system has been installed, that system can be cloned. `virt-clone` will automatically change the MAC address of your network device. Use the script below to clone your template.
Line 6: Line 6:
{{{ {{{#!highlight bash
Line 10: Line 10:
Line 17: Line 16:

if [ $# -eq 0 ]
if [ $# -gt 0 ]
Line 20: Line 18:
        echo "${0}: domain-name"
else
Line 36: Line 32:
}}}
Line 37: Line 34:
}}} == Cleaning up Your Clone ==

`cleanguest.sh`

Domain Cloning

Once a template system has been installed, that system can be cloned. virt-clone will automatically change the MAC address of your network device. Use the script below to clone your template.

clonedomain.sh

   1 #!/bin/sh
   2 
   3 LVM_GROUP="vg2"
   4 NAME_ORIGINAL="stretch-template"
   5 LVM_NAME_ORIGINAL="kvm_${NAME_ORIGINAL}_vda"
   6 LVM_SIZE_ORIGINAL=`lvs /dev/${LVM_GROUP}/${LVM_NAME_ORIGINAL} -o LV_SIZE --noheadings --units B --nosuffix`
   7 NAME_CLONE="stretch-clone"
   8 LVM_NAME_CLONE="kvm_${NAME_CLONE}_vda"
   9 
  10 if [ $# -gt 0 ]
  11 then
  12         NAME_CLONE=${1}
  13         LVM_NAME_CLONE="kvm_${NAME_CLONE}_vda"
  14 fi
  15 
  16 if [ ! -e /dev/${LVM_GROUP}/${LVM_NAME_CLONE} ]
  17 then
  18         # create lvm partition
  19         lvcreate --size ${LVM_SIZE_ORIGINAL}B --name ${LVM_NAME_CLONE} ${LVM_GROUP}
  20 
  21         # clone the domain
  22         virt-clone --original ${NAME_ORIGINAL} --name ${NAME_CLONE} --file /dev/${LVM_GROUP}/${LVM_NAME_CLONE} --check path_in_use=off,path_exists=off
  23 else
  24         echo "${0}: refusing to overwrite existing domain"
  25 fi

Cleaning up Your Clone

cleanguest.sh

None: Domain Cloning (last edited 2021-12-31 14:57:50 by Kristian Kallenberg)