Reputation: 1276
I have here a Windows distribution server that runs an ANT task to build enterprise software. What I need to do is to have the ANT task copy and run a VM image (Linux), and then...talk to that Linux VM through the host operating system (through the ant task itself). We need to be able to send files and/or commands to it.
Is there a practical way to go about this? I know that we already have a way to send commands to VMs that are also running Windows (so windows-windows interaction) -- but is there a way to do a windows-linux interaction?
Upvotes: 1
Views: 191
Reputation: 827
I've implemented the thing you wanted. Of course, for my own purposes, and then just found this question by googling on keywords "vmware" and "ant".
https://github.com/zhuravlik/ant-vix-tasks
This is the taskset for Ant to manage VMWare VMs. It works via VIX API, so Linux guests should be supported by it.
I did not test it with VMWare Server, though. Only with Workstation. But the API is common, so it should work.
Upvotes: 3
Reputation: 1073968
It will depend on what you need to do, but:
There are probably dozens of options.
Upvotes: 2