bootstrap-vz/base/bootstrapinfo.py

9 lines
191 B
Python
Raw Normal View History

2013-05-02 19:13:35 +02:00
class BootstrapInformation(object):
def __init__(self, manifest=None, debug=False):
2013-05-02 19:13:35 +02:00
self.manifest = manifest
self.debug = debug
import random
self.run_id = random.randrange(16**8)