├── ChangeLog ├── LICENSE ├── MAINTAINERS ├── Makefile ├── README.md ├── overlay └── etc │ ├── logrotate.d │ └── transfervm │ └── xensource │ └── bugtool │ ├── Transfer_VM.xml │ └── Transfer_VM │ └── transfer_vm_logs.xml ├── pylint.rc ├── pylint.sh ├── setup.py ├── supp-pack ├── 65-install-transfer-vm ├── ISCSISR.py.md5 ├── ISCSISR.py.patch ├── install-transfer-vm.sh ├── uninstall-transfer-vm.sh └── xenserver-transfer-vm.spec.in ├── transferplugin ├── copy ├── do-copy ├── do-transfer ├── forest.py ├── pluginlib.py ├── transfer ├── vhd.py ├── vhd_bitmaps.py └── vm_metadata.py ├── transfertests ├── XenAPI.py ├── bits.py ├── bits_frag_test.py ├── bits_test.py ├── copy_plugin.py ├── exportimport.py ├── expose_failure_test.py ├── expose_manualnetwork_test.py ├── expose_test.py ├── getrecord_test.py ├── http_test.py ├── manualnetwork_test.py ├── moreasserts.py ├── runtests.py ├── runtestsonsunburn.sh ├── snapshot_utils.py ├── sr_gc_tests.py ├── ssl_test.py ├── test_scvmm_common.py ├── test_scvmm_get.py ├── test_scvmm_put.py ├── testrun.sh ├── testsetup.py ├── timeout_test.py ├── transferclient.py ├── unexpose_test.py ├── util.py ├── vhd.py ├── vhd_tests.py └── xmltestoutput.py └── transfervm ├── Makefile ├── SUBVERSION-AUTH-README ├── buildroot.config ├── buildroot.config.patch ├── common.mk ├── edit-buildroot-config.sh ├── hvc.patch ├── iscsitarget-account-lookup.patch ├── iscsitarget.patch ├── lighttpd-1.4.20 └── src │ ├── Makefile.am │ ├── base64.c │ ├── base64.h │ ├── bits_common.c │ ├── bits_common.h │ ├── blockio.c │ ├── blockio.h │ ├── connections.c │ ├── mod_bits.c │ ├── mod_bitsvhd.c │ ├── mod_getvhd.c │ ├── mod_put.c │ ├── mod_putvhd.c │ ├── vhd_common.c │ └── vhd_common.h ├── lighttpd.bits-auth.patch ├── lighttpd.bits-post.patch ├── lighttpd.default-errorpages.patch ├── lighttpd.get-block-device.patch ├── lighttpd.log-blockio.patch ├── lighttpd.mk ├── lighttpd.partial-buffering.patch ├── lun_assoc.patch ├── make-sources.sh ├── menu.lst ├── mkxva ├── multihomed.patch ├── openssl-1.0.2d-patches.patch ├── openssl-1.0.2d.patch ├── ova.xml.in ├── overlay ├── etc │ ├── init.d │ │ ├── K50iscsitarget │ │ ├── S49tuneperformance │ │ ├── S50iscsitarget │ │ └── S60xenapiversion │ └── inittab ├── sbin │ ├── exposelogs │ ├── hotplug │ ├── hotplug.iscsi │ ├── hotplug.lighttpd │ ├── hotplug.puller │ ├── hotplug.stunnel │ ├── timeout │ └── transfervm.functions ├── usr │ └── lib │ │ └── ssl │ │ └── openssl.cnf └── var │ └── www │ └── index.html ├── pollhup.patch ├── puller ├── Makefile ├── base64.c ├── base64.h ├── buildroot.patch ├── package │ └── puller │ │ ├── Config.in │ │ └── puller.mk └── puller.c ├── securearg.patch ├── securebinding.patch ├── stunnel-4.56.patch ├── stunnel.patch └── xenstore ├── Makefile ├── buildroot.patch ├── package └── xenstore │ ├── Config.in │ └── xenstore.mk ├── xenstore-compat.c └── xs_wire.h /ChangeLog: -------------------------------------------------------------------------------- 1 | 1.0.0 (03-June-2013): 2 | * making component source externally visible. 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/README.md -------------------------------------------------------------------------------- /overlay/etc/logrotate.d/transfervm: -------------------------------------------------------------------------------- 1 | /var/log/transfervm/*.log { 2 | rotate 5 3 | size 2M 4 | missingok 5 | } -------------------------------------------------------------------------------- /overlay/etc/xensource/bugtool/Transfer_VM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/overlay/etc/xensource/bugtool/Transfer_VM.xml -------------------------------------------------------------------------------- /overlay/etc/xensource/bugtool/Transfer_VM/transfer_vm_logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/overlay/etc/xensource/bugtool/Transfer_VM/transfer_vm_logs.xml -------------------------------------------------------------------------------- /pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/pylint.rc -------------------------------------------------------------------------------- /pylint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/pylint.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/setup.py -------------------------------------------------------------------------------- /supp-pack/65-install-transfer-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/supp-pack/65-install-transfer-vm -------------------------------------------------------------------------------- /supp-pack/ISCSISR.py.md5: -------------------------------------------------------------------------------- 1 | 8a08eb0fb1c56d3e6c49b26dee04cc23 /opt/xensource/sm/ISCSISR.py 2 | -------------------------------------------------------------------------------- /supp-pack/ISCSISR.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/supp-pack/ISCSISR.py.patch -------------------------------------------------------------------------------- /supp-pack/install-transfer-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/supp-pack/install-transfer-vm.sh -------------------------------------------------------------------------------- /supp-pack/uninstall-transfer-vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/supp-pack/uninstall-transfer-vm.sh -------------------------------------------------------------------------------- /supp-pack/xenserver-transfer-vm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/supp-pack/xenserver-transfer-vm.spec.in -------------------------------------------------------------------------------- /transferplugin/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/copy -------------------------------------------------------------------------------- /transferplugin/do-copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/do-copy -------------------------------------------------------------------------------- /transferplugin/do-transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/do-transfer -------------------------------------------------------------------------------- /transferplugin/forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/forest.py -------------------------------------------------------------------------------- /transferplugin/pluginlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/pluginlib.py -------------------------------------------------------------------------------- /transferplugin/transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/transfer -------------------------------------------------------------------------------- /transferplugin/vhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/vhd.py -------------------------------------------------------------------------------- /transferplugin/vhd_bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/vhd_bitmaps.py -------------------------------------------------------------------------------- /transferplugin/vm_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transferplugin/vm_metadata.py -------------------------------------------------------------------------------- /transfertests/XenAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/XenAPI.py -------------------------------------------------------------------------------- /transfertests/bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/bits.py -------------------------------------------------------------------------------- /transfertests/bits_frag_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/bits_frag_test.py -------------------------------------------------------------------------------- /transfertests/bits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/bits_test.py -------------------------------------------------------------------------------- /transfertests/copy_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/copy_plugin.py -------------------------------------------------------------------------------- /transfertests/exportimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/exportimport.py -------------------------------------------------------------------------------- /transfertests/expose_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/expose_failure_test.py -------------------------------------------------------------------------------- /transfertests/expose_manualnetwork_test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transfertests/expose_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/expose_test.py -------------------------------------------------------------------------------- /transfertests/getrecord_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/getrecord_test.py -------------------------------------------------------------------------------- /transfertests/http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/http_test.py -------------------------------------------------------------------------------- /transfertests/manualnetwork_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/manualnetwork_test.py -------------------------------------------------------------------------------- /transfertests/moreasserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/moreasserts.py -------------------------------------------------------------------------------- /transfertests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/runtests.py -------------------------------------------------------------------------------- /transfertests/runtestsonsunburn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/runtestsonsunburn.sh -------------------------------------------------------------------------------- /transfertests/snapshot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/snapshot_utils.py -------------------------------------------------------------------------------- /transfertests/sr_gc_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/sr_gc_tests.py -------------------------------------------------------------------------------- /transfertests/ssl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/ssl_test.py -------------------------------------------------------------------------------- /transfertests/test_scvmm_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/test_scvmm_common.py -------------------------------------------------------------------------------- /transfertests/test_scvmm_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/test_scvmm_get.py -------------------------------------------------------------------------------- /transfertests/test_scvmm_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/test_scvmm_put.py -------------------------------------------------------------------------------- /transfertests/testrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/testrun.sh -------------------------------------------------------------------------------- /transfertests/testsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/testsetup.py -------------------------------------------------------------------------------- /transfertests/timeout_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/timeout_test.py -------------------------------------------------------------------------------- /transfertests/transferclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/transferclient.py -------------------------------------------------------------------------------- /transfertests/unexpose_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/unexpose_test.py -------------------------------------------------------------------------------- /transfertests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/util.py -------------------------------------------------------------------------------- /transfertests/vhd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/vhd.py -------------------------------------------------------------------------------- /transfertests/vhd_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/vhd_tests.py -------------------------------------------------------------------------------- /transfertests/xmltestoutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfertests/xmltestoutput.py -------------------------------------------------------------------------------- /transfervm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/Makefile -------------------------------------------------------------------------------- /transfervm/SUBVERSION-AUTH-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/SUBVERSION-AUTH-README -------------------------------------------------------------------------------- /transfervm/buildroot.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/buildroot.config -------------------------------------------------------------------------------- /transfervm/buildroot.config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/buildroot.config.patch -------------------------------------------------------------------------------- /transfervm/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/common.mk -------------------------------------------------------------------------------- /transfervm/edit-buildroot-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/edit-buildroot-config.sh -------------------------------------------------------------------------------- /transfervm/hvc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/hvc.patch -------------------------------------------------------------------------------- /transfervm/iscsitarget-account-lookup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/iscsitarget-account-lookup.patch -------------------------------------------------------------------------------- /transfervm/iscsitarget.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/iscsitarget.patch -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/Makefile.am -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/base64.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/base64.h -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/bits_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/bits_common.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/bits_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/bits_common.h -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/blockio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/blockio.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/blockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/blockio.h -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/connections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/connections.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/mod_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/mod_bits.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/mod_bitsvhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/mod_bitsvhd.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/mod_getvhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/mod_getvhd.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/mod_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/mod_put.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/mod_putvhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/mod_putvhd.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/vhd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/vhd_common.c -------------------------------------------------------------------------------- /transfervm/lighttpd-1.4.20/src/vhd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd-1.4.20/src/vhd_common.h -------------------------------------------------------------------------------- /transfervm/lighttpd.bits-auth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.bits-auth.patch -------------------------------------------------------------------------------- /transfervm/lighttpd.bits-post.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.bits-post.patch -------------------------------------------------------------------------------- /transfervm/lighttpd.default-errorpages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.default-errorpages.patch -------------------------------------------------------------------------------- /transfervm/lighttpd.get-block-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.get-block-device.patch -------------------------------------------------------------------------------- /transfervm/lighttpd.log-blockio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.log-blockio.patch -------------------------------------------------------------------------------- /transfervm/lighttpd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.mk -------------------------------------------------------------------------------- /transfervm/lighttpd.partial-buffering.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lighttpd.partial-buffering.patch -------------------------------------------------------------------------------- /transfervm/lun_assoc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/lun_assoc.patch -------------------------------------------------------------------------------- /transfervm/make-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/make-sources.sh -------------------------------------------------------------------------------- /transfervm/menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/menu.lst -------------------------------------------------------------------------------- /transfervm/mkxva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/mkxva -------------------------------------------------------------------------------- /transfervm/multihomed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/multihomed.patch -------------------------------------------------------------------------------- /transfervm/openssl-1.0.2d-patches.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/openssl-1.0.2d-patches.patch -------------------------------------------------------------------------------- /transfervm/openssl-1.0.2d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/openssl-1.0.2d.patch -------------------------------------------------------------------------------- /transfervm/ova.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/ova.xml.in -------------------------------------------------------------------------------- /transfervm/overlay/etc/init.d/K50iscsitarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/etc/init.d/K50iscsitarget -------------------------------------------------------------------------------- /transfervm/overlay/etc/init.d/S49tuneperformance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/etc/init.d/S49tuneperformance -------------------------------------------------------------------------------- /transfervm/overlay/etc/init.d/S50iscsitarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/etc/init.d/S50iscsitarget -------------------------------------------------------------------------------- /transfervm/overlay/etc/init.d/S60xenapiversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/etc/init.d/S60xenapiversion -------------------------------------------------------------------------------- /transfervm/overlay/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/etc/inittab -------------------------------------------------------------------------------- /transfervm/overlay/sbin/exposelogs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/exposelogs -------------------------------------------------------------------------------- /transfervm/overlay/sbin/hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/hotplug -------------------------------------------------------------------------------- /transfervm/overlay/sbin/hotplug.iscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/hotplug.iscsi -------------------------------------------------------------------------------- /transfervm/overlay/sbin/hotplug.lighttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/hotplug.lighttpd -------------------------------------------------------------------------------- /transfervm/overlay/sbin/hotplug.puller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/hotplug.puller -------------------------------------------------------------------------------- /transfervm/overlay/sbin/hotplug.stunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/hotplug.stunnel -------------------------------------------------------------------------------- /transfervm/overlay/sbin/timeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/timeout -------------------------------------------------------------------------------- /transfervm/overlay/sbin/transfervm.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/sbin/transfervm.functions -------------------------------------------------------------------------------- /transfervm/overlay/usr/lib/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/overlay/usr/lib/ssl/openssl.cnf -------------------------------------------------------------------------------- /transfervm/overlay/var/www/index.html: -------------------------------------------------------------------------------- 1 | transfervm 2 | -------------------------------------------------------------------------------- /transfervm/pollhup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/pollhup.patch -------------------------------------------------------------------------------- /transfervm/puller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/Makefile -------------------------------------------------------------------------------- /transfervm/puller/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/base64.c -------------------------------------------------------------------------------- /transfervm/puller/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/base64.h -------------------------------------------------------------------------------- /transfervm/puller/buildroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/buildroot.patch -------------------------------------------------------------------------------- /transfervm/puller/package/puller/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/package/puller/Config.in -------------------------------------------------------------------------------- /transfervm/puller/package/puller/puller.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/package/puller/puller.mk -------------------------------------------------------------------------------- /transfervm/puller/puller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/puller/puller.c -------------------------------------------------------------------------------- /transfervm/securearg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/securearg.patch -------------------------------------------------------------------------------- /transfervm/securebinding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/securebinding.patch -------------------------------------------------------------------------------- /transfervm/stunnel-4.56.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/stunnel-4.56.patch -------------------------------------------------------------------------------- /transfervm/stunnel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/stunnel.patch -------------------------------------------------------------------------------- /transfervm/xenstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/Makefile -------------------------------------------------------------------------------- /transfervm/xenstore/buildroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/buildroot.patch -------------------------------------------------------------------------------- /transfervm/xenstore/package/xenstore/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/package/xenstore/Config.in -------------------------------------------------------------------------------- /transfervm/xenstore/package/xenstore/xenstore.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/package/xenstore/xenstore.mk -------------------------------------------------------------------------------- /transfervm/xenstore/xenstore-compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/xenstore-compat.c -------------------------------------------------------------------------------- /transfervm/xenstore/xs_wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenserver/transfervm/HEAD/transfervm/xenstore/xs_wire.h --------------------------------------------------------------------------------