bootstrap-vz/base/bootstrapinfo.py
2013-08-17 17:28:46 +02:00

8 lines
193 B
Python

class BootstrapInformation(object):
def __init__(self, manifest=None, debug=False):
self.manifest = manifest
self.debug = debug
import random
self.run_id = random.randrange(16 ** 8)