This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import logging, sys, re, getpass, argparse, csv, time, Queue, threading, datetime | |
from pysphere import MORTypes, VIServer, VITask, VIProperty, VIMor, VIException | |
from pysphere.vi_virtual_machine import VIVirtualMachine | |
from threading import Thread | |
from time import sleep | |
from Queue import * | |
class ThreadCloneVM(threading.Thread): | |
def __init__(self, queue, target, *args): |
NewerOlder