diff options
author | yuyang <Gabriel.yuyang@huawei.com> | 2017-02-20 11:28:17 +0800 |
---|---|---|
committer | yuyang <Gabriel.yuyang@huawei.com> | 2017-03-09 19:54:56 +0800 |
commit | c5162f01bb54eab6b3c4056074e28e0080dc4d08 (patch) | |
tree | 62c3c6b08fd54e25deb22949a009bc7ce3ac9612 /utils/dev_env/deploy/libvirt_template.xml | |
parent | 5938133db9d2a4a8796c45eeeeef2c74da3ddeba (diff) |
Add liscense to file headers
JIRA: BOTTLENECK-133
Some Yaml, XML and __init__.py file do not have liscense headers.
This patch is to add headers to those files or delete those are deprecated.
Change-Id: Ie059b1f1879eb420eec171f96985247510c74642
Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'utils/dev_env/deploy/libvirt_template.xml')
-rw-r--r-- | utils/dev_env/deploy/libvirt_template.xml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/utils/dev_env/deploy/libvirt_template.xml b/utils/dev_env/deploy/libvirt_template.xml deleted file mode 100644 index eddeff00..00000000 --- a/utils/dev_env/deploy/libvirt_template.xml +++ /dev/null @@ -1,41 +0,0 @@ -<domain type='kvm'> - <name>REPLACE_NAME</name> - <memory unit='MiB'>REPLACE_MEM</memory> - <currentMemory unit='MiB'>REPLACE_MEM</currentMemory> - <vcpu placement='static'>REPLACE_CPU</vcpu> - <os> - <type arch='x86_64'>hvm</type> - <boot dev='hd'/> - </os> - <features> - <acpi/><apic/><pae/> - </features> - <clock offset="utc"/> - <on_poweroff>destroy</on_poweroff> - <on_reboot>restart</on_reboot> - <on_crash>restart</on_crash> - <devices> - <disk type='file' device='disk'> - <driver name='qemu' type='qcow2'/> - <source file='REPLACE_IMAGE'/> - <target dev='vda' bus='virtio'/> - </disk> - <disk type='file' device='cdrom'> - <driver name='qemu'/> - <source file='REPLACE_SEED_IMAGE'/> - <target dev='hdb'/> - <readonly/> - </disk> - <interface type='network'> - <source network='default'/> - <mac address='REPLACE_MAC_ADDR'/> - <model type='virtio'/> - </interface> - <input type='tablet' bus='usb'/> - <graphics type='vnc' port='-1' autoport='yes' listen='0.0.0.0'/> - <console type='pty'/> - <video> - <model type='cirrus'/> - </video> - </devices> -</domain> |