├── .gitignore ├── Dockerfile ├── README.md ├── cpanfile ├── docker_build.sh ├── lib └── Xen │ └── API.pm └── migratevm.pl /.gitignore: -------------------------------------------------------------------------------- 1 | migratevm -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/cpanfile -------------------------------------------------------------------------------- /docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/docker_build.sh -------------------------------------------------------------------------------- /lib/Xen/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/lib/Xen/API.pm -------------------------------------------------------------------------------- /migratevm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djamps/migrate-vm/HEAD/migratevm.pl --------------------------------------------------------------------------------